diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:43 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:43 -0400 |
commit | 803ae40e4822f342d4501673632d7ea0023bac26 (patch) | |
tree | 4071b7894843ea80d092decd8374279fa0dc338a /libraries/perl-Image-Info | |
parent | 8be49e76b2131b16b4ba2a9f5d879e25325cd549 (diff) | |
download | slackbuilds-803ae40e4822f342d4501673632d7ea0023bac26.tar.gz |
libraries/perl-Image-Info: Fixed for bash4.
Diffstat (limited to 'libraries/perl-Image-Info')
-rw-r--r-- | libraries/perl-Image-Info/perl-Image-Info.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/perl-Image-Info/perl-Image-Info.SlackBuild b/libraries/perl-Image-Info/perl-Image-Info.SlackBuild index d63b1a2bef..695af7587d 100644 --- a/libraries/perl-Image-Info/perl-Image-Info.SlackBuild +++ b/libraries/perl-Image-Info/perl-Image-Info.SlackBuild @@ -84,12 +84,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 {} \; |