diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:48 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:48 -0400 |
commit | f2c931bdfe617c47b8e7b730fc9227d1b20070a0 (patch) | |
tree | 266bfdb813c8099cc8b40325973486bea867942b /games | |
parent | 168b0422be89e4d30e09589ceb11606d9b59f482 (diff) | |
download | slackbuilds-f2c931bdfe617c47b8e7b730fc9227d1b20070a0.tar.gz |
games/zdoom: Fixed for bash4.
Diffstat (limited to 'games')
-rw-r--r-- | games/zdoom/zdoom.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/games/zdoom/zdoom.SlackBuild b/games/zdoom/zdoom.SlackBuild index f10d3a7357..5404f805c1 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 |