From: ewt Date: Fri, 10 Oct 1997 19:10:36 +0000 (+0000) Subject: only generate requirements for executable files X-Git-Tag: rpm-4.4-release~3889 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6608c32b48787c6832ab6ca22761e26c494c1e1b;p=platform%2Fupstream%2Frpm.git only generate requirements for executable files CVS patchset: 1846 CVS date: 1997/10/10 19:10:36 --- diff --git a/autodeps/linux.req b/autodeps/linux.req index 30fcd9b..ae00b78 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