diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:14 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:14 -0400 |
commit | e603a4d1b8b773f9f4281602538f150ac83afb2a (patch) | |
tree | a61c251d11247eda39373be766f5c0f25c0dd438 /network/bitlbee | |
parent | 2e47624882b6c574c1d2cafb0e20b5276ac02710 (diff) | |
download | slackbuilds-e603a4d1b8b773f9f4281602538f150ac83afb2a.tar.gz |
network/bitlbee: Fixed for bash4.
Diffstat (limited to 'network/bitlbee')
-rw-r--r-- | network/bitlbee/bitlbee.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/bitlbee/bitlbee.SlackBuild b/network/bitlbee/bitlbee.SlackBuild index f5c07f16d9..be7b740967 100644 --- a/network/bitlbee/bitlbee.SlackBuild +++ b/network/bitlbee/bitlbee.SlackBuild @@ -91,12 +91,8 @@ fi make all make install install-etc install-doc 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 {} \; |