diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:39 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:39 -0400 |
commit | 35eb41143c23cce914554be5011e248f0f27dff7 (patch) | |
tree | a93f00f4d2ed36254883974d4930359c3b054e63 /games/rezerwar | |
parent | 0d323686a1261b311d9c0d0ff48c6c99074e530c (diff) |
games/rezerwar: Fixed for bash4.
Diffstat (limited to 'games/rezerwar')
-rw-r--r-- | games/rezerwar/rezerwar.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/games/rezerwar/rezerwar.SlackBuild b/games/rezerwar/rezerwar.SlackBuild index 7a465de0bfb1..d40b6061c527 100644 --- a/games/rezerwar/rezerwar.SlackBuild +++ b/games/rezerwar/rezerwar.SlackBuild @@ -47,12 +47,8 @@ OS="Linux" ./configure make make install DESTDIR=$PKG -( 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/share/applications install -m 0644 $CWD/$PRGNAM.desktop $PKG/usr/share/applications |