diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:17 -0400 |
commit | a96513d17ec26edb28135bae28fe376dfd82dcf3 (patch) | |
tree | 96b91732aeba1e9dd1c1aa8fb17e38398ed28f1e | |
parent | 1d80692489a61c7f3b4039e26b5b9247394150da (diff) | |
download | slackbuilds-a96513d17ec26edb28135bae28fe376dfd82dcf3.tar.gz |
games/advancescan: Fixed for bash4.
-rw-r--r-- | games/advancescan/advancescan.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/games/advancescan/advancescan.SlackBuild b/games/advancescan/advancescan.SlackBuild index 6a6e344baa..88c0c2ce20 100644 --- a/games/advancescan/advancescan.SlackBuild +++ b/games/advancescan/advancescan.SlackBuild @@ -54,12 +54,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 {} \; |