From c77b283f0d751fdf2926ba439ec56b71234c353d Mon Sep 17 00:00:00 2001 From: Greg Frost Date: Tue, 28 Jul 2009 21:18:31 +0930 Subject: execheck.sh: expand scope of exe search found lots more problems --- build_tools/bin/execheck.sh | 6 +++--- 1 file 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 -- cgit v0.12