From ca474b62e47e6a6550f00e8ed41d415db19cdcb9 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:38:48 -0400 Subject: libraries/perl-file-path-expand: Fixed for bash4. --- libraries/perl-file-path-expand/perl-file-path-expand.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'libraries/perl-file-path-expand') 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 {} \; -- cgit v1.2.3