diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:16 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:16 -0400 |
commit | d90276370b32b912f648fb5a885bd93e734ff7c6 (patch) | |
tree | ad889607dd95d9b73e0361143f5a476e5980aad0 /network/perl-Mail-SPF | |
parent | 8ab703553115217ce1862fb6899644cf82fd6a17 (diff) | |
download | slackbuilds-d90276370b32b912f648fb5a885bd93e734ff7c6.tar.gz |
network/perl-Mail-SPF: Fixed for bash4.
Diffstat (limited to 'network/perl-Mail-SPF')
-rw-r--r-- | network/perl-Mail-SPF/perl-Mail-SPF.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/perl-Mail-SPF/perl-Mail-SPF.SlackBuild b/network/perl-Mail-SPF/perl-Mail-SPF.SlackBuild index 78a82f2ada..20ac72b5c6 100644 --- a/network/perl-Mail-SPF/perl-Mail-SPF.SlackBuild +++ b/network/perl-Mail-SPF/perl-Mail-SPF.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 # move man pages mv $PKG/usr/share/man $PKG/usr |