diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:15 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:15 -0400 |
commit | 353feb732d81484328fa52ec0abe4cf22ce2240d (patch) | |
tree | bd2b40b00d03f1c767bfd5ad4c69c68116890c72 /system/postgis | |
parent | de1571b122a272097b112fa70b70f673639eef30 (diff) | |
download | slackbuilds-353feb732d81484328fa52ec0abe4cf22ce2240d.tar.gz |
system/postgis: Fixed for bash4.
Diffstat (limited to 'system/postgis')
-rw-r--r-- | system/postgis/postgis.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/postgis/postgis.SlackBuild b/system/postgis/postgis.SlackBuild index 3fcea3522e..b2e0f8f2af 100644 --- a/system/postgis/postgis.SlackBuild +++ b/system/postgis/postgis.SlackBuild @@ -73,12 +73,8 @@ CXXFLAGS="$SLKCFLAGS" \ 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 || 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 mkdir -p $PKG/usr/man/man1 cp -a doc/man/* $PKG/usr/man/man1 |