summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autodeps/linux.req8
1 files changed, 6 insertions, 2 deletions
diff --git a/autodeps/linux.req b/autodeps/linux.req
index 30fcd9bc9..ae00b78de 100644
--- a/autodeps/linux.req
+++ b/autodeps/linux.req
@@ -10,9 +10,13 @@ exelist=`echo $filelist | xargs -r file | fgrep executable | cut -d: -f1 `
scriptlist=`echo $filelist | xargs -r file | egrep ":.*(perl |script )" | cut -d: -f1 `
for f in $exelist; do
- ldd $f | awk '/=>/ { print $1 }'
+ if [ -x $f ]; then
+ ldd $f | awk '/=>/ { print $1 }'
+ fi
done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | sort -u
for f in $scriptlist; do
- head -1 $f | sed -e 's/^\#\![ ]*//' | cut -d" " -f1
+ if [ -x $f ]; then
+ head -1 $f | sed -e 's/^\#\![ ]*//' | cut -d" " -f1
+ fi
done | sort -u