diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:41 -0400 |
commit | ed198cacdef68a65327c5bec0a5904f28bb808d6 (patch) | |
tree | 542de902e637a4da46bbcb0aacc6c33c45b3a4b6 /network/nload | |
parent | daddc65935a35498365018fa6f944d462755fd01 (diff) | |
download | slackbuilds-ed198cacdef68a65327c5bec0a5904f28bb808d6.tar.gz |
network/nload: Fixed for bash4.
Diffstat (limited to 'network/nload')
-rw-r--r-- | network/nload/nload.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/nload/nload.SlackBuild b/network/nload/nload.SlackBuild index bf38a1b77c..794e277d68 100644 --- a/network/nload/nload.SlackBuild +++ b/network/nload/nload.SlackBuild @@ -52,12 +52,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 || exit 1 find . -type f -exec gzip -9 {} \; |