diff options
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 |
commit | 891c3820f46ea27a627781116bd565d9875dcbfe (patch) | |
tree | bad24451bcc0dc252729099d7aab89b768d4e6eb /network/nmh | |
parent | ed198cacdef68a65327c5bec0a5904f28bb808d6 (diff) |
network/nmh: Fixed for bash4.
Diffstat (limited to 'network/nmh')
-rw-r--r-- | network/nmh/nmh.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/nmh/nmh.SlackBuild b/network/nmh/nmh.SlackBuild index ab8bfde64d90..8e25d2b97eb9 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 {} \; |