summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author David Somero2010-05-19 08:38:37 +0200
committer David Somero2010-05-19 08:38:37 +0200
commit7424c37bf2e052bdd9fc6c1d1bd44dfd1a2d0247 (patch)
tree66cb528bcf4b1176d1b5d1140ccdcb9a4cfe14df /libraries
parent38ce260827bb79c44257d90a8596693d401f59f0 (diff)
downloadslackbuilds-7424c37bf2e052bdd9fc6c1d1bd44dfd1a2d0247.tar.gz
libraries/perl-Crypt-OpenSSL-Random: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r--libraries/perl-Crypt-OpenSSL-Random/perl-Crypt-OpenSSL-Random.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/perl-Crypt-OpenSSL-Random/perl-Crypt-OpenSSL-Random.SlackBuild b/libraries/perl-Crypt-OpenSSL-Random/perl-Crypt-OpenSSL-Random.SlackBuild
index 680152453e..8cc8b68759 100644
--- a/libraries/perl-Crypt-OpenSSL-Random/perl-Crypt-OpenSSL-Random.SlackBuild
+++ b/libraries/perl-Crypt-OpenSSL-Random/perl-Crypt-OpenSSL-Random.SlackBuild
@@ -86,12 +86,8 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
# Remove empty directories
find $PKG -depth -type d -empty -exec rm -rf {} \;
-( 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 {} \;