diff options
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 |
commit | 2b97cd8f14f62fe05fd126a58413aa6249734e2c (patch) | |
tree | 7d388d580eedd1f04d4aa81ddeb871e3ff9a3f02 /libraries/perl-DBD-Pg | |
parent | 7424c37bf2e052bdd9fc6c1d1bd44dfd1a2d0247 (diff) | |
download | slackbuilds-2b97cd8f14f62fe05fd126a58413aa6249734e2c.tar.gz |
libraries/perl-DBD-Pg: Fixed for bash4.
Diffstat (limited to 'libraries/perl-DBD-Pg')
-rw-r--r-- | libraries/perl-DBD-Pg/perl-DBD-Pg.SlackBuild | 8 |
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 {} \; |