From f2c931bdfe617c47b8e7b730fc9227d1b20070a0 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:34:48 -0400 Subject: games/zdoom: Fixed for bash4. --- games/zdoom/zdoom.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'games/zdoom/zdoom.SlackBuild') diff --git a/games/zdoom/zdoom.SlackBuild b/games/zdoom/zdoom.SlackBuild index f10d3a73573ad..5404f805c18be 100644 --- a/games/zdoom/zdoom.SlackBuild +++ b/games/zdoom/zdoom.SlackBuild @@ -65,12 +65,8 @@ install -m644 $CWD/zdoom.desktop $PKG/usr/share/applications/ cd .. -( 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 || true -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a docs/* $PKG/usr/doc/$PRGNAM-$VERSION -- cgit v1.2.3