diff options
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 |
commit | d7f94065764e75c1f037a122f73b6a0f7db03474 (patch) | |
tree | 32fdd919777d2b26dde43efa186eaa4431ed0a38 /misc | |
parent | 61acd71e3d8083cc5a068c52acbc09345d8028ef (diff) |
misc/stardict: Fixed for bash4.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/stardict/stardict.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/misc/stardict/stardict.SlackBuild b/misc/stardict/stardict.SlackBuild index 80b0465c428a..c0b749694245 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 {} \; |