summaryrefslogtreecommitdiffstats
path: root/libraries/perl-Geography-Countries
diff options
context:
space:
mode:
author David Somero2010-05-19 08:38:40 +0200
committer David Somero2010-05-19 08:38:40 +0200
commit72b9379951ab97d9c4011a79834384efa7900656 (patch)
treeeb5b8e0fa5f9d95365ae7fbb66d3332575664771 /libraries/perl-Geography-Countries
parent1b3d34b74a77499d734b153d4687351a02e6e18d (diff)
downloadslackbuilds-72b9379951ab97d9c4011a79834384efa7900656.tar.gz
libraries/perl-Geography-Countries: Fixed for bash4.
Diffstat (limited to 'libraries/perl-Geography-Countries')
-rw-r--r--libraries/perl-Geography-Countries/perl-Geography-Countries.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/perl-Geography-Countries/perl-Geography-Countries.SlackBuild b/libraries/perl-Geography-Countries/perl-Geography-Countries.SlackBuild
index 3fe3a35135..46b378e83b 100644
--- a/libraries/perl-Geography-Countries/perl-Geography-Countries.SlackBuild
+++ b/libraries/perl-Geography-Countries/perl-Geography-Countries.SlackBuild
@@ -88,12 +88,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 {} \;