diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:47 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:47 -0400 |
commit | 9f498a0046286841e81b0d58ce566ea929956bf1 (patch) | |
tree | b2d77b4ebd465467869a221eab098690145a5f55 /network | |
parent | c61b950a6d575e3f05733e9fdd832bc173c79e93 (diff) | |
download | slackbuilds-9f498a0046286841e81b0d58ce566ea929956bf1.tar.gz |
network/zsync: Fixed for bash4.
Diffstat (limited to 'network')
-rw-r--r-- | network/zsync/zsync.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/zsync/zsync.SlackBuild b/network/zsync/zsync.SlackBuild index 1ae4b21486..fb25658e63 100644 --- a/network/zsync/zsync.SlackBuild +++ b/network/zsync/zsync.SlackBuild @@ -55,12 +55,8 @@ CXXFLAGS="$SLKCFLAGS" \ make 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 {} \; |