diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:42 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:42 -0400 |
commit | 8be49e76b2131b16b4ba2a9f5d879e25325cd549 (patch) | |
tree | 59cb45ab0d2aed116ccad147d5c00d11511d42dd /libraries/perl-IP-Country | |
parent | c45f87959479a8888491ea740251febccd9c4c8d (diff) | |
download | slackbuilds-8be49e76b2131b16b4ba2a9f5d879e25325cd549.tar.gz |
libraries/perl-IP-Country: Fixed for bash4.
Diffstat (limited to 'libraries/perl-IP-Country')
-rw-r--r-- | libraries/perl-IP-Country/perl-IP-Country.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/perl-IP-Country/perl-IP-Country.SlackBuild b/libraries/perl-IP-Country/perl-IP-Country.SlackBuild index 860ae6cb51..c81091c8c4 100644 --- a/libraries/perl-IP-Country/perl-IP-Country.SlackBuild +++ b/libraries/perl-IP-Country/perl-IP-Country.SlackBuild @@ -87,12 +87,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 {} \; |