summaryrefslogtreecommitdiffstats
path: root/development/SoQt
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:33:09 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:33:09 -0400
commit561ce4e1584d8bd78333cd7c1c897a51a5f0bd74 (patch)
tree66b1883eb5a125fc399e3ed7a83afe6c579988a4 /development/SoQt
parent69dd81ba0d0da5836bed5c554343145cf932fdd1 (diff)
downloadslackbuilds-561ce4e1584d8bd78333cd7c1c897a51a5f0bd74.tar.gz
slackbuilds-561ce4e1584d8bd78333cd7c1c897a51a5f0bd74.tar.xz
development/SoQt: Fixed for bash4.
Diffstat (limited to 'development/SoQt')
-rwxr-xr-xdevelopment/SoQt/SoQt.SlackBuild6
1 files changed, 2 insertions, 4 deletions
diff --git a/development/SoQt/SoQt.SlackBuild b/development/SoQt/SoQt.SlackBuild
index ec42f4c03d..4c69aea2e9 100755
--- a/development/SoQt/SoQt.SlackBuild
+++ b/development/SoQt/SoQt.SlackBuild
@@ -56,10 +56,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
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;