diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:48 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:48 -0400 |
commit | ca474b62e47e6a6550f00e8ed41d415db19cdcb9 (patch) | |
tree | 2f392d4bd2bc12418ad33bc91e465a57268ce89f /libraries | |
parent | 6fc5006a14989fd82ec13315c685f3bfe5ce2ff6 (diff) |
libraries/perl-file-path-expand: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/perl-file-path-expand/perl-file-path-expand.SlackBuild | 8 |
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 4de8973efb45..301e1ab73194 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 {} \; |