diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:41:52 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:41:52 -0400 |
commit | cc858e4f2ee4e4e06d34c998094f5c919c67cc3e (patch) | |
tree | a5414ade1a059e874e70166bb11c3ccdf5871714 /network/aMule | |
parent | a5adc8424eb5b5be902767cee0c7831500d6dee0 (diff) | |
download | slackbuilds-cc858e4f2ee4e4e06d34c998094f5c919c67cc3e.tar.gz |
network/aMule: Fixed for bash4.
Diffstat (limited to 'network/aMule')
-rw-r--r-- | network/aMule/aMule.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/aMule/aMule.SlackBuild b/network/aMule/aMule.SlackBuild index 4d92caff0d..ea2a7d3ba9 100644 --- a/network/aMule/aMule.SlackBuild +++ b/network/aMule/aMule.SlackBuild @@ -55,12 +55,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 {} \; |