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 | 5e6d5389918222c2f89be13f7ead71ef83bc122a (patch) | |
tree | aa4da50acf893f29a66d130a32733160eccf6466 /games/loemu | |
parent | fcf0ba41b3a3e7ac8c2f48629b769786e48168fa (diff) | |
download | slackbuilds-5e6d5389918222c2f89be13f7ead71ef83bc122a.tar.gz |
games/loemu: Fixed for bash4.
Diffstat (limited to 'games/loemu')
-rw-r--r-- | games/loemu/loemu.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/games/loemu/loemu.SlackBuild b/games/loemu/loemu.SlackBuild index 21998e8af8..aa269f21fd 100644 --- a/games/loemu/loemu.SlackBuild +++ b/games/loemu/loemu.SlackBuild @@ -62,12 +62,8 @@ CXXFLAGS="$SLKCFLAGS" \ python setup.py build || exit 1 python setup.py install --root $PKG || exit 1 -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null - 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 ADDING CHANGES PKG-INFO README \ |