diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:14 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:14 -0400 |
commit | d563dad9ab6d133764efd20cb2ffe417dd2b04b1 (patch) | |
tree | d4d54a8347364c308f94a11c96446949e259c96f /games | |
parent | 5f6a935866bc19326e16e7aa38521b31ac603d3b (diff) | |
download | slackbuilds-d563dad9ab6d133764efd20cb2ffe417dd2b04b1.tar.gz |
games/FlightGear: Fixed for bash4.
Diffstat (limited to 'games')
-rw-r--r-- | games/FlightGear/FlightGear.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/games/FlightGear/FlightGear.SlackBuild b/games/FlightGear/FlightGear.SlackBuild index 321aa188bb..19dbc97e40 100644 --- a/games/FlightGear/FlightGear.SlackBuild +++ b/games/FlightGear/FlightGear.SlackBuild @@ -55,10 +55,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 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |