diff options
author | jbj <devnull@localhost> | 1999-10-11 15:47:27 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-10-11 15:47:27 +0000 |
commit | 87c7c2f8d7fe1e0a8cf430448dccc625d1d5a347 (patch) | |
tree | 3b26c9c693fd4ac6ed4a42254f74259780aad3b5 /autodeps | |
parent | cfa9ce427b7c5e2dbb9eba9fe94fff59833d53b3 (diff) | |
download | rpm-87c7c2f8d7fe1e0a8cf430448dccc625d1d5a347.tar.gz rpm-87c7c2f8d7fe1e0a8cf430448dccc625d1d5a347.tar.bz2 rpm-87c7c2f8d7fe1e0a8cf430448dccc625d1d5a347.zip |
Add quotes to check for file list existence (nigel@pobox.com).
CVS patchset: 3380
CVS date: 1999/10/11 15:47:27
Diffstat (limited to 'autodeps')
-rw-r--r-- | autodeps/solaris.req | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autodeps/solaris.req b/autodeps/solaris.req index 9393e2e59..d0f7f8928 100644 --- a/autodeps/solaris.req +++ b/autodeps/solaris.req @@ -8,7 +8,7 @@ export PATH ulimit -c 0 filelist=`sed "s/['\"]/\\\&/g"` -[ -z $filelist ] && exit #emulate -r option for xargs +[ -z "$filelist" ] && exit #emulate -r option for xargs for f in `echo $filelist | xargs file | fgrep executable | cut -d: -f1`; do ldd $f 2>/dev/null | awk '/\=\>/ { print $1 }' |