summaryrefslogtreecommitdiffstats
path: root/network/iodine
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:43:42 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:43:42 -0400
commit2b223fc96a4b5912e4e905852898e14132f8f056 (patch)
tree593ea7b050bb08593765e9732445a23dfc14abef /network/iodine
parent79d485fd274cc78aa22a8c6976516edba2744261 (diff)
downloadslackbuilds-2b223fc96a4b5912e4e905852898e14132f8f056.tar.gz
slackbuilds-2b223fc96a4b5912e4e905852898e14132f8f056.tar.xz
network/iodine: Fixed for bash4.
Diffstat (limited to 'network/iodine')
-rw-r--r--network/iodine/iodine.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/network/iodine/iodine.SlackBuild b/network/iodine/iodine.SlackBuild
index 88d8ac2b24..67f6e04048 100644
--- a/network/iodine/iodine.SlackBuild
+++ b/network/iodine/iodine.SlackBuild
@@ -50,12 +50,8 @@ find . \
make
make install prefix=/usr mandir=/usr/man 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 || true
-)
+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 {} \;