diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:08 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:08 -0400 |
commit | b3c9bb3af4192b3815d0f49c87be6cdc85838e6a (patch) | |
tree | 170886f10915a6f3d13b1ef974624a65dccf62ab /development | |
parent | 5943129dd16b7c8604569c93eafabd148ea7678b (diff) | |
download | slackbuilds-b3c9bb3af4192b3815d0f49c87be6cdc85838e6a.tar.gz |
development/splint: Fixed for bash4.
Diffstat (limited to 'development')
-rw-r--r-- | development/splint/splint.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/development/splint/splint.SlackBuild b/development/splint/splint.SlackBuild index 6d8209861a..5f680ac00c 100644 --- a/development/splint/splint.SlackBuild +++ b/development/splint/splint.SlackBuild @@ -55,12 +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 . | 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 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |