summaryrefslogtreecommitdiffstats
path: root/development/splint
diff options
context:
space:
mode:
author David Somero2010-05-19 08:34:08 +0200
committer David Somero2010-05-19 08:34:08 +0200
commitb3c9bb3af4192b3815d0f49c87be6cdc85838e6a (patch)
tree170886f10915a6f3d13b1ef974624a65dccf62ab /development/splint
parent5943129dd16b7c8604569c93eafabd148ea7678b (diff)
downloadslackbuilds-b3c9bb3af4192b3815d0f49c87be6cdc85838e6a.tar.gz
development/splint: Fixed for bash4.
Diffstat (limited to 'development/splint')
-rw-r--r--development/splint/splint.SlackBuild8
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 {} \;