summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Frost <gregfrost1@bigpond.com>2009-07-28 11:48:31 (GMT)
committerGreg Frost <gregfrost1@bigpond.com>2009-07-28 11:48:31 (GMT)
commitc77b283f0d751fdf2926ba439ec56b71234c353d (patch)
treec311858b57f4cb999cfd29280562e4c8e298ebfd
parentbb26e435ca9bf517622e66852f65356677bbd1dc (diff)
downloadlinhes_dev-c77b283f0d751fdf2926ba439ec56b71234c353d.zip
execheck.sh: expand scope of exe search found lots more problems
-rwxr-xr-xbuild_tools/bin/execheck.sh6
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