diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 16:48:43 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 16:48:43 +0100 |
commit | a7dabdab8c3eb4b5e245034364ce63b947a48040 (patch) | |
tree | ad7d97e3f8eac2d17aebbf903ba31faeafcfd569 /tools | |
parent | 0567a18b2297a05e937374375ed751310551995c (diff) | |
download | ffi-efl-a7dabdab8c3eb4b5e245034364ce63b947a48040.zip ffi-efl-a7dabdab8c3eb4b5e245034364ce63b947a48040.tar.gz |
tools/genruby: remove unnecessary requires
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/genruby.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/genruby.rb b/tools/genruby.rb index 8ff114c..04d666f 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -478,7 +478,7 @@ libs << { libs << { :lib=>ELM_LIB,:header=>'elm_hover.h', :modname=>'ElmHover', :prefix=>'elm_hover', :outfile=>'elm/elm_hover.rb', - :requires=>["#{NATIVE}/elementary","#{NATIVE}/elm/elm_scroller"], :constants=>[] + :requires=>["#{NATIVE}/elementary"], :constants=>[] } libs << { :lib=>ELM_LIB,:header=>'elc_hoversel.h', @@ -488,7 +488,7 @@ libs << { libs << { :lib=>ELM_LIB,:header=>'elm_colorselector.h', :modname=>'ElmColorSelector', :prefix=>'elm_colorselector', :outfile=>'elm/elm_colorselector.rb', - :requires=>["#{NATIVE}/elementary","#{NATIVE}/elm/elm_scroller"], :constants=>[] + :requires=>["#{NATIVE}/elementary"], :constants=>[] } # Dir.mkdir lib_path unless (File.exists? lib_path) |