diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:25 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:25 -0400 |
commit | 68b00298b265b1aaae63852fa28b506f5f599cc8 (patch) | |
tree | 2728e22e470e644715351f7bd0319a90295fc227 /games/fgrun | |
parent | 213a81fec133c29a1cce9ecb1ccd7a8af4a0e10d (diff) | |
download | slackbuilds-68b00298b265b1aaae63852fa28b506f5f599cc8.tar.gz |
games/fgrun: Fixed for bash4.
Diffstat (limited to 'games/fgrun')
-rw-r--r-- | games/fgrun/fgrun.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/games/fgrun/fgrun.SlackBuild b/games/fgrun/fgrun.SlackBuild index 9578ece221..07b0f2c23b 100644 --- a/games/fgrun/fgrun.SlackBuild +++ b/games/fgrun/fgrun.SlackBuild @@ -54,10 +54,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 $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 \ |