summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
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
commitf6a2ddb53d585c06357f8b2d04431d42107f1010 (patch)
treecdaf9cf1bfea773a06e44412628eacb09c6ca260 /games
parent96a5c0ecc45024e0a8179e95ac2d34c0cd477ce0 (diff)
downloadslackbuilds-f6a2ddb53d585c06357f8b2d04431d42107f1010.tar.gz
slackbuilds-f6a2ddb53d585c06357f8b2d04431d42107f1010.tar.xz
games/blobwars: Fixed for bash4.
Diffstat (limited to 'games')
-rw-r--r--games/blobwars/blobwars.SlackBuild8
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