diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:49 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:49 -0400 |
commit | f14b6f56710b171b1eabbf15df2b1bafc110cdce (patch) | |
tree | c94519f65d0ddcbd282615d145baf93b423907c4 /libraries/perl-libintl | |
parent | b8f141f36bd1860b93b42ddfb22f03e19ecf3883 (diff) |
libraries/perl-libintl: Fixed for bash4.
Diffstat (limited to 'libraries/perl-libintl')
-rw-r--r-- | libraries/perl-libintl/perl-libintl.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/perl-libintl/perl-libintl.SlackBuild b/libraries/perl-libintl/perl-libintl.SlackBuild index 192c833c1c19..45f7a06e83d4 100644 --- a/libraries/perl-libintl/perl-libintl.SlackBuild +++ b/libraries/perl-libintl/perl-libintl.SlackBuild @@ -45,12 +45,8 @@ perl Makefile.PL 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 -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mv $PKG/usr/share/man $PKG/usr && rm -rf $PKG/usr/share |