diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:33 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:33 -0400 |
commit | 53df062460b7a78bbfe6cc5523d8933f6e1172d2 (patch) | |
tree | 4a1a1fc46a42e025755f40a8a9d139137b0091d1 /games/ltris | |
parent | 5e6d5389918222c2f89be13f7ead71ef83bc122a (diff) | |
download | slackbuilds-53df062460b7a78bbfe6cc5523d8933f6e1172d2.tar.gz |
games/ltris: Fixed for bash4.
Diffstat (limited to 'games/ltris')
-rw-r--r-- | games/ltris/ltris.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/games/ltris/ltris.SlackBuild b/games/ltris/ltris.SlackBuild index 7e501cb7f5..38f01904da 100644 --- a/games/ltris/ltris.SlackBuild +++ b/games/ltris/ltris.SlackBuild @@ -51,12 +51,8 @@ CXXFLAGS="$SLKCFLAGS" \ 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 -) +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 AUTHORS COPYING INSTALL README $PKG/usr/doc/$PRGNAM-$VERSION |