diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:46 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:46 -0400 |
commit | 912d05f8aba391a10073fd0df87b5d6ae32ade7a (patch) | |
tree | 5c05e57a27b9a66594e03c04524e53fbdc16d38c /games/xcowsay/xcowsay.SlackBuild | |
parent | af4b8a1b14c0e71764e70ae1e6e0998ead70f22f (diff) | |
download | slackbuilds-912d05f8aba391a10073fd0df87b5d6ae32ade7a.tar.gz |
games/xcowsay: Fixed for bash4.
Diffstat (limited to 'games/xcowsay/xcowsay.SlackBuild')
-rw-r--r-- | games/xcowsay/xcowsay.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/games/xcowsay/xcowsay.SlackBuild b/games/xcowsay/xcowsay.SlackBuild index d265778ae2..766b21394e 100644 --- a/games/xcowsay/xcowsay.SlackBuild +++ b/games/xcowsay/xcowsay.SlackBuild @@ -56,12 +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 -) +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 {} \; |