diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:34 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:34 -0400 |
commit | 9cd5259de6e3df65e2240295809ec937e8812892 (patch) | |
tree | 18b199584365bfca650710edd18db73f3b91b5ba | |
parent | f3febaf778538e5af9e44793877b346df13b681c (diff) | |
download | slackbuilds-9cd5259de6e3df65e2240295809ec937e8812892.tar.gz |
network/naim: Fixed for bash4.
-rw-r--r-- | network/naim/naim.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/naim/naim.SlackBuild b/network/naim/naim.SlackBuild index 4a483a4edb..54d39ae551 100644 --- a/network/naim/naim.SlackBuild +++ b/network/naim/naim.SlackBuild @@ -51,12 +51,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 - 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 {} \; |