diff options
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 21998e8af858..aa269f21fdb9 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 \ |