diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:59 -0400 |
commit | 853b312649e1f9462ebf352fc1296c0fb078cc58 (patch) | |
tree | df6e0332d17e962e04a7f3936b1f60a842e46d0a /network/etherape | |
parent | 90412825ce1964cb9f786d13d4eb02d60ff3b166 (diff) |
network/etherape: Fixed for bash4.
Diffstat (limited to 'network/etherape')
-rw-r--r-- | network/etherape/etherape.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/etherape/etherape.SlackBuild b/network/etherape/etherape.SlackBuild index 2032ec83e520..7724fe123062 100644 --- a/network/etherape/etherape.SlackBuild +++ b/network/etherape/etherape.SlackBuild @@ -70,12 +70,8 @@ LDFLAGS="$SLKLDFLAGS" \ 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 || true -) +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 {} \; |