From e339ebf119bf173b984816cda9e524bf168c734f Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 25 Jul 2012 17:02:10 +0000 Subject: "resolve" /bin/env foo interpreter to actual path, rather than generating dependencies on coreutils, should trim off ~800 dependencies more (Per Oyvind, mdv) --- find-requires.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'find-requires.in') diff --git a/find-requires.in b/find-requires.in index 6d742e5..4c8c2c9 100755 --- a/find-requires.in +++ b/find-requires.in @@ -116,6 +116,10 @@ uniqdeplist+="$tmpdeplist" for f in $scriptlist; do [ -r $f -a -x $f ] || continue interp=`head -n 1 $f | grep '^#!' | sed -e 's/^\#\![ ]*//' | cut -d" " -f1` + if [[ "$interp" == *bin/env ]]; then + arg=`head -n 1 $f | grep '^#!' | sed -e 's/^\#\![ ]*//' | cut -d" " -f2` + interp="`which $arg`" + fi case $interp in # we really don't need to add these dependencies as they're required by # glibc and therefore guaranteed to be satisfied -- cgit v1.2.1