diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:33 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:33 -0400 |
commit | e9525378cb3483fcef00f0b0ff03415c286c83ec (patch) | |
tree | 4e57cfe1d0f4c8cffb439545e607187d17c1e0ab | |
parent | 0950d58f6317ac0a0a99e8138063d91d2459909c (diff) | |
download | slackbuilds-e9525378cb3483fcef00f0b0ff03415c286c83ec.tar.gz |
network/proxytunnel: Fixed for bash4.
-rw-r--r-- | network/proxytunnel/proxytunnel.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/proxytunnel/proxytunnel.SlackBuild b/network/proxytunnel/proxytunnel.SlackBuild index e76f7b141c..10ae26e3fb 100644 --- a/network/proxytunnel/proxytunnel.SlackBuild +++ b/network/proxytunnel/proxytunnel.SlackBuild @@ -44,12 +44,8 @@ find . \ make CFLAGS+="$SLKCFLAGS" make install PREFIX=/usr MANDIR=/usr/man 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 {} \; |