From f6a2ddb53d585c06357f8b2d04431d42107f1010 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:34:19 -0400 Subject: games/blobwars: Fixed for bash4. --- games/blobwars/blobwars.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'games/blobwars') 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 -- cgit v1.2.3-65-gdbad