summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:38 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:38 -0400
commit2b97cd8f14f62fe05fd126a58413aa6249734e2c (patch)
tree7d388d580eedd1f04d4aa81ddeb871e3ff9a3f02 /libraries
parent7424c37bf2e052bdd9fc6c1d1bd44dfd1a2d0247 (diff)
downloadslackbuilds-2b97cd8f14f62fe05fd126a58413aa6249734e2c.tar.gz
slackbuilds-2b97cd8f14f62fe05fd126a58413aa6249734e2c.tar.xz
libraries/perl-DBD-Pg: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r--libraries/perl-DBD-Pg/perl-DBD-Pg.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/perl-DBD-Pg/perl-DBD-Pg.SlackBuild b/libraries/perl-DBD-Pg/perl-DBD-Pg.SlackBuild
index 2facdbc7fe..f4f0c09ad9 100644
--- a/libraries/perl-DBD-Pg/perl-DBD-Pg.SlackBuild
+++ b/libraries/perl-DBD-Pg/perl-DBD-Pg.SlackBuild
@@ -47,12 +47,8 @@ make
#make test #requires a running PostgreSQL database
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 {} \;