summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Stelling <blubb@gentoo.org>2006-04-15 18:42:28 +0000
committerSimon Stelling <blubb@gentoo.org>2006-04-15 18:42:28 +0000
commitd68ec90157a963f3483c09915b1844ee43b4ac77 (patch)
tree6553f68fc4267b99784f10fb2fe03a3454505eef /bin/find-requires
parentsome more hasq fixes (diff)
downloadportage-multirepo-d68ec90157a963f3483c09915b1844ee43b4ac77.tar.gz
portage-multirepo-d68ec90157a963f3483c09915b1844ee43b4ac77.tar.bz2
portage-multirepo-d68ec90157a963f3483c09915b1844ee43b4ac77.zip
`` must die
svn path=/main/trunk/; revision=3155
Diffstat (limited to 'bin/find-requires')
-rwxr-xr-xbin/find-requires8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/find-requires b/bin/find-requires
index efd356e2..82959b74 100755
--- a/bin/find-requires
+++ b/bin/find-requires
@@ -8,10 +8,10 @@
ulimit -c 0
-filelist=`sed "s/['\"]/\\\&/g"`
-exelist=`echo $filelist | $XARGS file | grep ":.*executable" | cut -d: -f1 `
-scriptlist=`echo $filelist | $XARGS file | egrep ":.* (commands|script) " | cut -d: -f1 `
-liblist=`echo $filelist | $XARGS file | grep ":.*shared object" | cut -d : -f1 `
+filelist=$(sed "s/['\"]/\\\&/g")
+exelist=$(echo $filelist | $XARGS file | grep ":.*executable" | cut -d: -f1 )
+scriptlist=$(echo $filelist | $XARGS file | egrep ":.* (commands|script) " | cut -d: -f1 )
+liblist=$(echo $filelist | $XARGS file | grep ":.*shared object" | cut -d : -f1 )
for f in $exelist; do
if [ -x $f ]; then