summaryrefslogtreecommitdiffstats
path: root/misc/stardict
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:40:17 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:40:17 -0400
commitd7f94065764e75c1f037a122f73b6a0f7db03474 (patch)
tree32fdd919777d2b26dde43efa186eaa4431ed0a38 /misc/stardict
parent61acd71e3d8083cc5a068c52acbc09345d8028ef (diff)
downloadslackbuilds-d7f94065764e75c1f037a122f73b6a0f7db03474.tar.gz
slackbuilds-d7f94065764e75c1f037a122f73b6a0f7db03474.tar.xz
misc/stardict: Fixed for bash4.
Diffstat (limited to 'misc/stardict')
-rw-r--r--misc/stardict/stardict.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/misc/stardict/stardict.SlackBuild b/misc/stardict/stardict.SlackBuild
index 80b0465c42..c0b7496942 100644
--- a/misc/stardict/stardict.SlackBuild
+++ b/misc/stardict/stardict.SlackBuild
@@ -84,12 +84,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
-)
+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 {} \;