diff options
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 |
commit | 2b223fc96a4b5912e4e905852898e14132f8f056 (patch) | |
tree | 593ea7b050bb08593765e9732445a23dfc14abef /network/iodine | |
parent | 79d485fd274cc78aa22a8c6976516edba2744261 (diff) | |
download | slackbuilds-2b223fc96a4b5912e4e905852898e14132f8f056.tar.gz |
network/iodine: Fixed for bash4.
Diffstat (limited to 'network/iodine')
-rw-r--r-- | network/iodine/iodine.SlackBuild | 8 |
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 {} \; |