diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:19 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:19 -0400 |
commit | f6a2ddb53d585c06357f8b2d04431d42107f1010 (patch) | |
tree | cdaf9cf1bfea773a06e44412628eacb09c6ca260 /games/blobwars | |
parent | 96a5c0ecc45024e0a8179e95ac2d34c0cd477ce0 (diff) | |
download | slackbuilds-f6a2ddb53d585c06357f8b2d04431d42107f1010.tar.gz |
games/blobwars: Fixed for bash4.
Diffstat (limited to 'games/blobwars')
-rw-r--r-- | games/blobwars/blobwars.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/games/blobwars/blobwars.SlackBuild b/games/blobwars/blobwars.SlackBuild index 3e262642e1..366f72e7a2 100644 --- a/games/blobwars/blobwars.SlackBuild +++ b/games/blobwars/blobwars.SlackBuild @@ -48,12 +48,8 @@ make make install DESTDIR=$PKG # Strip binaries and libraries -( 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 # Copy program documentation into the package # Also, include the SlackBuild script in the documentation directory |