diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:01 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:01 -0400 |
commit | 52597eb572906ba52d5e1f95ff541d162236a7a3 (patch) | |
tree | c2bac112a347c8a354ff7eb4cea9662cd307b8da /network/tinyproxy | |
parent | a2993fc10d103a6628f8aa4bf59c7e40677b54c7 (diff) | |
download | slackbuilds-52597eb572906ba52d5e1f95ff541d162236a7a3.tar.gz |
network/tinyproxy: Fixed for bash4.
Diffstat (limited to 'network/tinyproxy')
-rw-r--r-- | network/tinyproxy/tinyproxy.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/tinyproxy/tinyproxy.SlackBuild b/network/tinyproxy/tinyproxy.SlackBuild index a84bbef848..fb4404af79 100644 --- a/network/tinyproxy/tinyproxy.SlackBuild +++ b/network/tinyproxy/tinyproxy.SlackBuild @@ -61,12 +61,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 || 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 {} \; |