diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:36 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:36 -0400 |
commit | 22188c2c9e34647a7209c896b45f169b29ecb56c (patch) | |
tree | f24bc92ea681d60d7c15d949e1e0c84de5bcb971 /libraries | |
parent | 6dac7f1903e453bc390872b757a940fec9db26f3 (diff) | |
download | slackbuilds-22188c2c9e34647a7209c896b45f169b29ecb56c.tar.gz |
libraries/SimGear: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/SimGear/SimGear.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/SimGear/SimGear.SlackBuild b/libraries/SimGear/SimGear.SlackBuild index 6b97cd6e0b..488e9424bd 100644 --- a/libraries/SimGear/SimGear.SlackBuild +++ b/libraries/SimGear/SimGear.SlackBuild @@ -56,12 +56,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep "current ar archive" | 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 || 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 \ |