diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:35 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:35 -0400 |
commit | 709bc95d2ff54578cdbeed369f30696c9f0ab8ee (patch) | |
tree | 20bea80049f04be32013c682c6bbeabf4be781e6 /libraries | |
parent | 450b659b25638179dafcea488208f0e567a8fdd8 (diff) |
libraries/perl-Convert-UUlib: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/perl-Convert-UUlib/perl-Convert-UUlib.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/perl-Convert-UUlib/perl-Convert-UUlib.SlackBuild b/libraries/perl-Convert-UUlib/perl-Convert-UUlib.SlackBuild index 0e604b072a6b..6cf78ffc16d6 100644 --- a/libraries/perl-Convert-UUlib/perl-Convert-UUlib.SlackBuild +++ b/libraries/perl-Convert-UUlib/perl-Convert-UUlib.SlackBuild @@ -85,12 +85,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 {} \; |