From 353feb732d81484328fa52ec0abe4cf22ce2240d Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:50:15 -0400 Subject: system/postgis: Fixed for bash4. --- system/postgis/postgis.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'system/postgis') 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 -- cgit v1.2.3