diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:23 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:23 -0400 |
commit | 3363521c125639257c8a5cd5a5aa0693a8ccb02b (patch) | |
tree | d71de5b48f2495d81a771c1a6ab143f176126810 /network/cherokee | |
parent | 51b5fae8c1c42ac7da9f4b9456a150a01099f6d9 (diff) | |
download | slackbuilds-3363521c125639257c8a5cd5a5aa0693a8ccb02b.tar.gz |
network/cherokee: Fixed for bash4.
Diffstat (limited to 'network/cherokee')
-rw-r--r-- | network/cherokee/cherokee.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/cherokee/cherokee.SlackBuild b/network/cherokee/cherokee.SlackBuild index 08d7b2ffba..caff2d9f11 100644 --- a/network/cherokee/cherokee.SlackBuild +++ b/network/cherokee/cherokee.SlackBuild @@ -75,12 +75,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 {} \; |