summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author David Somero2010-05-19 08:46:47 +0200
committer David Somero2010-05-19 08:46:47 +0200
commit9f498a0046286841e81b0d58ce566ea929956bf1 (patch)
treeb2d77b4ebd465467869a221eab098690145a5f55 /network
parentc61b950a6d575e3f05733e9fdd832bc173c79e93 (diff)
downloadslackbuilds-9f498a0046286841e81b0d58ce566ea929956bf1.tar.gz
network/zsync: Fixed for bash4.
Diffstat (limited to 'network')
-rw-r--r--network/zsync/zsync.SlackBuild8
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 {} \;