diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:44 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:44 -0400 |
commit | e05609194ecc69d3b500ffa040012b3b1e93072f (patch) | |
tree | 79668918673d539276747d867ac0d0b8589d45c9 /system/lzip | |
parent | bd81753a8e0c55d265d789766f66b187ad6c287c (diff) | |
download | slackbuilds-e05609194ecc69d3b500ffa040012b3b1e93072f.tar.gz |
system/lzip: Fixed for bash4.
Diffstat (limited to 'system/lzip')
-rw-r--r-- | system/lzip/lzip.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/lzip/lzip.SlackBuild b/system/lzip/lzip.SlackBuild index 939823edd9..efebc58345 100644 --- a/system/lzip/lzip.SlackBuild +++ b/system/lzip/lzip.SlackBuild @@ -77,12 +77,8 @@ CXXFLAGS="$SLKCFLAGS" \ make CFLAGS+="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" make install DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |