summaryrefslogtreecommitdiffstats
path: root/network/iperf
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:43:44 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:43:44 -0400
commit2fb1868ca048570d684104dd06bc3d5ddf7515fa (patch)
treebd02172be375f0bef2c5fcf8f7779976fcbb06f3 /network/iperf
parent2b223fc96a4b5912e4e905852898e14132f8f056 (diff)
downloadslackbuilds-2fb1868ca048570d684104dd06bc3d5ddf7515fa.tar.gz
slackbuilds-2fb1868ca048570d684104dd06bc3d5ddf7515fa.tar.xz
network/iperf: Fixed for bash4.
Diffstat (limited to 'network/iperf')
-rw-r--r--network/iperf/iperf.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/network/iperf/iperf.SlackBuild b/network/iperf/iperf.SlackBuild
index 5dc64ffdbf..7a4bab5480 100644
--- a/network/iperf/iperf.SlackBuild
+++ b/network/iperf/iperf.SlackBuild
@@ -57,12 +57,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 {} \;