Fix requires generation for scripts
authormarc <devnull@localhost>
Wed, 17 Sep 1997 17:52:08 +0000 (17:52 +0000)
committermarc <devnull@localhost>
Wed, 17 Sep 1997 17:52:08 +0000 (17:52 +0000)
CVS patchset: 1830
CVS date: 1997/09/17 17:52:08

autodeps/linux.req

index eb1f6f4..30fcd9b 100644 (file)
@@ -7,12 +7,12 @@ ulimit -c 0
 
 filelist=`sed "s/['\"]/\\\&/g"`
 exelist=`echo $filelist | xargs -r file | fgrep executable | cut -d: -f1 `
-scriptlist=`echo $filelist | xargs -r file | egrep ":.*(perl|script)" | 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 }'
 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
+    head -1 $f | sed -e 's/^\#\![      ]*//' | cut -d" " -f1
 done | sort -u