diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:16 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:16 -0400 |
commit | 1d80692489a61c7f3b4039e26b5b9247394150da (patch) | |
tree | db0f20cdf470bbe4a0a1a11023403edf055135b8 /games/advancemame | |
parent | fbc259e3ddf81a6498c1ef51e7656ec52e8f77e3 (diff) | |
download | slackbuilds-1d80692489a61c7f3b4039e26b5b9247394150da.tar.gz |
games/advancemame: Fixed for bash4.
Diffstat (limited to 'games/advancemame')
-rw-r--r-- | games/advancemame/advancemame.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/games/advancemame/advancemame.SlackBuild b/games/advancemame/advancemame.SlackBuild index 8582130180..f895235c85 100644 --- a/games/advancemame/advancemame.SlackBuild +++ b/games/advancemame/advancemame.SlackBuild @@ -73,12 +73,8 @@ make /usr/bin/ginstall -m 644 $DOC $PKG/usr/doc/$PRGNAM-$VERSION /usr/bin/ginstall -m 644 ./doc/*.1 $PKG/usr/man/man1 -( 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 {} \; |