diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 14:15:04 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 14:15:04 +0100 |
commit | ddabff2e3979c47a9ca651276b9bcd47c7b94acc (patch) | |
tree | 0f64cb864dd37d050a400d362d79de347ef2e13d /tools | |
parent | 6c4b002c86de18856b28fc314e59afc81a773a39 (diff) | |
download | ffi-efl-ddabff2e3979c47a9ca651276b9bcd47c7b94acc.zip ffi-efl-ddabff2e3979c47a9ca651276b9bcd47c7b94acc.tar.gz |
tools/check_loading: fix lib/efl loading file list
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/check_loading | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check_loading b/tools/check_loading index 88ad366..4d4cc64 100755 --- a/tools/check_loading +++ b/tools/check_loading @@ -20,7 +20,7 @@ function each () { run $native done echo " lib/efl/*.rb" - for wrapper in $parentdir/lib/efl/e*.rb; do + for wrapper in $(find $parentdir/lib/efl/ -name e*.rb); do run $wrapper done } |