summaryrefslogtreecommitdiffstats
path: root/system/dump
diff options
context:
space:
mode:
author David Somero2010-05-19 08:48:29 +0200
committer David Somero2010-05-19 08:48:29 +0200
commit972ff7cf5257bc4b45b595879f47ce8399c87dcd (patch)
tree3c6b4aba2f3def6822efe100a46c95eaaf5e3fc3 /system/dump
parent5d1d059e56040daf6d52a436fec6de1116cdfd31 (diff)
downloadslackbuilds-972ff7cf5257bc4b45b595879f47ce8399c87dcd.tar.gz
system/dump: Fixed for bash4.
Diffstat (limited to 'system/dump')
-rw-r--r--system/dump/dump.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/dump/dump.SlackBuild b/system/dump/dump.SlackBuild
index de3076926d..99a6c825a3 100644
--- a/system/dump/dump.SlackBuild
+++ b/system/dump/dump.SlackBuild
@@ -64,12 +64,8 @@ sed -i 's/ -lselinux -lsepol//' configure.in
make
make prefix=$PKG/usr install
-( 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 {} \;