summaryrefslogtreecommitdiffstats
path: root/system/srm
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:50:32 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:50:32 -0400
commit1c1a0492a37a12bcff3152c52aa7395b15c533f8 (patch)
tree7e4c3831e622bf3582cdf082cf21100c87838d30 /system/srm
parent133cd234c1ec4ef3dc30dbd7956da2889875432f (diff)
downloadslackbuilds-1c1a0492a37a12bcff3152c52aa7395b15c533f8.tar.gz
slackbuilds-1c1a0492a37a12bcff3152c52aa7395b15c533f8.tar.xz
system/srm: Fixed for bash4.
Diffstat (limited to 'system/srm')
-rw-r--r--system/srm/srm.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/srm/srm.SlackBuild b/system/srm/srm.SlackBuild
index 62b5ad68e0..a358958671 100644
--- a/system/srm/srm.SlackBuild
+++ b/system/srm/srm.SlackBuild
@@ -77,12 +77,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
-)
+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 {} \;