summaryrefslogtreecommitdiffstats
path: root/academic/qgis/qgis.SlackBuild
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:30:46 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:30:46 -0400
commitaf55666ebf4a6aad70afc002ef6e89c1bce148fb (patch)
tree21b83ec42a36a3be2e9e94dfada49e7878f0db6b /academic/qgis/qgis.SlackBuild
parenta5191419fbf4484f0fd365cfbb4f3c8570e8381a (diff)
downloadslackbuilds-af55666ebf4a6aad70afc002ef6e89c1bce148fb.tar.gz
slackbuilds-af55666ebf4a6aad70afc002ef6e89c1bce148fb.tar.xz
academic/qgis: Fixed for bash4.
Diffstat (limited to 'academic/qgis/qgis.SlackBuild')
-rw-r--r--academic/qgis/qgis.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/academic/qgis/qgis.SlackBuild b/academic/qgis/qgis.SlackBuild
index d070582f9a..227a05c5f2 100644
--- a/academic/qgis/qgis.SlackBuild
+++ b/academic/qgis/qgis.SlackBuild
@@ -53,12 +53,8 @@ cmake \
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
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
-)
+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 {} \;