summaryrefslogtreecommitdiffstats
path: root/system/postgis
diff options
context:
space:
mode:
author David Somero2010-05-19 08:50:15 +0200
committer David Somero2010-05-19 08:50:15 +0200
commit353feb732d81484328fa52ec0abe4cf22ce2240d (patch)
treebd2b40b00d03f1c767bfd5ad4c69c68116890c72 /system/postgis
parentde1571b122a272097b112fa70b70f673639eef30 (diff)
downloadslackbuilds-353feb732d81484328fa52ec0abe4cf22ce2240d.tar.gz
system/postgis: Fixed for bash4.
Diffstat (limited to 'system/postgis')
-rw-r--r--system/postgis/postgis.SlackBuild8
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