diff options
author | ewt <devnull@localhost> | 1997-03-04 02:08:21 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1997-03-04 02:08:21 +0000 |
commit | 020f9d270c05b5f3c106e7eb88bb4d686f033f8e (patch) | |
tree | 1bd668749652a991e4ab2effc09e9c52170af041 /autodeps/solaris.req | |
parent | e91eaa89c9f71dc223562350a8421d775227beb7 (diff) | |
download | librpm-tizen-020f9d270c05b5f3c106e7eb88bb4d686f033f8e.tar.gz librpm-tizen-020f9d270c05b5f3c106e7eb88bb4d686f033f8e.tar.bz2 librpm-tizen-020f9d270c05b5f3c106e7eb88bb4d686f033f8e.zip |
fixed some simple problems from the last revision
CVS patchset: 1467
CVS date: 1997/03/04 02:08:21
Diffstat (limited to 'autodeps/solaris.req')
-rw-r--r-- | autodeps/solaris.req | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autodeps/solaris.req b/autodeps/solaris.req index f4914aca8..9983b3e8f 100644 --- a/autodeps/solaris.req +++ b/autodeps/solaris.req @@ -4,9 +4,9 @@ ulimit -c 0 -filelist=`xargs -r file | fgrep executable | cut -d: -f1 ` +filelist=`| sed "s/['\"]/\\\&/g" | xargs -r file | fgrep executable | cut -d: -f1 ` for f in $filelist; do ldd $f | awk '/=>/ { print $1 }' -done | sort -u | | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | sort -u +done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | sort -u |