diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:17 -0400 |
commit | d50b017af8253e61e9f1857ab46ff65d49c206d9 (patch) | |
tree | c2cefe914defe7cd433b15db5b1e3e8d794c094e /network/mew | |
parent | 6a048f92c3709de13c7b3c8f3f6129fd58092217 (diff) |
network/mew: Fixed for bash4.
Diffstat (limited to 'network/mew')
-rw-r--r-- | network/mew/mew.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/mew/mew.SlackBuild b/network/mew/mew.SlackBuild index 0be037dd346c..d172c8fc2a11 100644 --- a/network/mew/mew.SlackBuild +++ b/network/mew/mew.SlackBuild @@ -67,12 +67,8 @@ make install DESTDIR=$PKG ln -s mewcat mewdecode ) -( 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 {} \; |