diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:37 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:37 -0400 |
commit | 7424c37bf2e052bdd9fc6c1d1bd44dfd1a2d0247 (patch) | |
tree | 66cb528bcf4b1176d1b5d1140ccdcb9a4cfe14df /libraries/perl-Crypt-OpenSSL-Random | |
parent | 38ce260827bb79c44257d90a8596693d401f59f0 (diff) | |
download | slackbuilds-7424c37bf2e052bdd9fc6c1d1bd44dfd1a2d0247.tar.gz |
libraries/perl-Crypt-OpenSSL-Random: Fixed for bash4.
Diffstat (limited to 'libraries/perl-Crypt-OpenSSL-Random')
-rw-r--r-- | libraries/perl-Crypt-OpenSSL-Random/perl-Crypt-OpenSSL-Random.SlackBuild | 8 |
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 {} \; |