summaryrefslogtreecommitdiffstats
path: root/libraries/perl-file-path-expand
diff options
context:
space:
mode:
author David Somero2010-05-19 08:38:48 +0200
committer David Somero2010-05-19 08:38:48 +0200
commitca474b62e47e6a6550f00e8ed41d415db19cdcb9 (patch)
tree2f392d4bd2bc12418ad33bc91e465a57268ce89f /libraries/perl-file-path-expand
parent6fc5006a14989fd82ec13315c685f3bfe5ce2ff6 (diff)
downloadslackbuilds-ca474b62e47e6a6550f00e8ed41d415db19cdcb9.tar.gz
libraries/perl-file-path-expand: Fixed for bash4.
Diffstat (limited to 'libraries/perl-file-path-expand')
-rw-r--r--libraries/perl-file-path-expand/perl-file-path-expand.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/perl-file-path-expand/perl-file-path-expand.SlackBuild b/libraries/perl-file-path-expand/perl-file-path-expand.SlackBuild
index 4de8973efb..301e1ab731 100644
--- a/libraries/perl-file-path-expand/perl-file-path-expand.SlackBuild
+++ b/libraries/perl-file-path-expand/perl-file-path-expand.SlackBuild
@@ -47,12 +47,8 @@ perl Makefile.PL INSTALLDIRS=vendor INSTALLVENDORMAN3DIR=/usr/man/man3
make
make install DESTDIR=$PKG
-( 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 {} \;