summaryrefslogtreecommitdiffstats
path: root/network/naim
diff options
context:
space:
mode:
author David Somero2010-05-19 08:44:34 +0200
committer David Somero2010-05-19 08:44:34 +0200
commit9cd5259de6e3df65e2240295809ec937e8812892 (patch)
tree18b199584365bfca650710edd18db73f3b91b5ba /network/naim
parentf3febaf778538e5af9e44793877b346df13b681c (diff)
downloadslackbuilds-9cd5259de6e3df65e2240295809ec937e8812892.tar.gz
network/naim: Fixed for bash4.
Diffstat (limited to 'network/naim')
-rw-r--r--network/naim/naim.SlackBuild8
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 {} \;