summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:45:03 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:45:03 -0400
commitd0391979b7a6426305e04520d5a738a9bdc73422 (patch)
treeb521f8b3487360cf577ce52d9c7b682a09ba35a1 /network
parentcb6d8372e2179f86fc4fb8d168d30162352063f9 (diff)
downloadslackbuilds-d0391979b7a6426305e04520d5a738a9bdc73422.tar.gz
slackbuilds-d0391979b7a6426305e04520d5a738a9bdc73422.tar.xz
network/openvas-libraries: Fixed for bash4.
Diffstat (limited to 'network')
-rw-r--r--network/openvas-libraries/openvas-libraries.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/network/openvas-libraries/openvas-libraries.SlackBuild b/network/openvas-libraries/openvas-libraries.SlackBuild
index 74e0afbe9a..cf8c9ca875 100644
--- a/network/openvas-libraries/openvas-libraries.SlackBuild
+++ b/network/openvas-libraries/openvas-libraries.SlackBuild
@@ -74,12 +74,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 {} \;