summaryrefslogtreecommitdiffstats
path: root/network/nmh
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:44:43 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:44:43 -0400
commit891c3820f46ea27a627781116bd565d9875dcbfe (patch)
treebad24451bcc0dc252729099d7aab89b768d4e6eb /network/nmh
parented198cacdef68a65327c5bec0a5904f28bb808d6 (diff)
downloadslackbuilds-891c3820f46ea27a627781116bd565d9875dcbfe.tar.gz
slackbuilds-891c3820f46ea27a627781116bd565d9875dcbfe.tar.xz
network/nmh: Fixed for bash4.
Diffstat (limited to 'network/nmh')
-rw-r--r--network/nmh/nmh.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/network/nmh/nmh.SlackBuild b/network/nmh/nmh.SlackBuild
index ab8bfde64d..8e25d2b97e 100644
--- a/network/nmh/nmh.SlackBuild
+++ b/network/nmh/nmh.SlackBuild
@@ -52,12 +52,8 @@ CFLAGS="$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 {} \;