diff options
Diffstat (limited to 'tools/genruby.rb')
-rwxr-xr-x | tools/genruby.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genruby.rb b/tools/genruby.rb index f9e1480..6acf55b 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -243,7 +243,7 @@ libraries.collect do |header,module_name,module_base,lib| Dir.mkdir dir unless Dir.exists? dir output = File.join dir, "#{header[0..-3].downcase}-ffi.rb" puts "parse #{base}-*" - r = [lib, output, module_name, header[0..-3].downcase ] + r = [lib, output, module_name, module_base ] r << gen_enums(base, INDENT) r << gen_typedefs(base, INDENT) r << gen_callbacks(base, INDENT) |