diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:43:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:43:59 -0400 |
commit | 00219d974984b79f2b532d3e8c598f258117cf20 (patch) | |
tree | 31b8cf05623dce7f23ed6c0c0ebd1b9f4bf52b47 /network | |
parent | 934caff44f34768b596556969fafe641f8f3a41f (diff) | |
download | slackbuilds-00219d974984b79f2b532d3e8c598f258117cf20.tar.gz |
network/knock: Fixed for bash4.
Diffstat (limited to 'network')
-rw-r--r-- | network/knock/knock.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/knock/knock.SlackBuild b/network/knock/knock.SlackBuild index d6ac8e24ed..df0ce9fd3f 100644 --- a/network/knock/knock.SlackBuild +++ b/network/knock/knock.SlackBuild @@ -53,12 +53,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 || true - 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 {} \; |