diff options
author | Greg Frost <gregfrost1@bigpond.com> | 2009-07-28 11:48:31 (GMT) |
---|---|---|
committer | Greg Frost <gregfrost1@bigpond.com> | 2009-07-28 11:48:31 (GMT) |
commit | c77b283f0d751fdf2926ba439ec56b71234c353d (patch) | |
tree | c311858b57f4cb999cfd29280562e4c8e298ebfd /build_tools/bin | |
parent | bb26e435ca9bf517622e66852f65356677bbd1dc (diff) | |
download | linhes_dev-c77b283f0d751fdf2926ba439ec56b71234c353d.zip |
execheck.sh: expand scope of exe search found lots more problems
Diffstat (limited to 'build_tools/bin')
-rwxr-xr-x | build_tools/bin/execheck.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build_tools/bin/execheck.sh b/build_tools/bin/execheck.sh index 3c0fe30..4764047 100755 --- a/build_tools/bin/execheck.sh +++ b/build_tools/bin/execheck.sh @@ -2,9 +2,9 @@ if [ -z "$*" ] then - files="/lib/* /usr/lib/* /usr/local/lib/* \ - /bin/* /usr/bin/* /usr/local/bin/* \ - /sbin/* /usr/sbin/*" + files="$(find /lib) $(find /usr/lib) $(find /usr/local/lib) \ + $(find /bin) $(find /usr/bin) $(find /usr/local/bin) \ + $(find /sbin) $(find /usr/sbin)" else files="$*" fi |