diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:53 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:53 -0400 |
commit | 91a8aa279278930a6e06a3aef818682c2aec9268 (patch) | |
tree | c72b1c1327463f7b59df877499317720f8ee9502 /desktop/grun/grun.SlackBuild | |
parent | 23661c70e18b7776f1e52980e819b48c0c0a3d2c (diff) | |
download | slackbuilds-91a8aa279278930a6e06a3aef818682c2aec9268.tar.gz |
desktop/grun: Fixed for bash4.
Diffstat (limited to 'desktop/grun/grun.SlackBuild')
-rwxr-xr-x | desktop/grun/grun.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/grun/grun.SlackBuild b/desktop/grun/grun.SlackBuild index 3c0ea889ad..4f2e720de2 100755 --- a/desktop/grun/grun.SlackBuild +++ b/desktop/grun/grun.SlackBuild @@ -74,8 +74,8 @@ make install DESTDIR=$PKG gzip -9 $PKG/usr/man/man?/*.?x -find $PKG | xargs file | grep "executable" | 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 \ |