diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:29 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:29 -0400 |
commit | 972ff7cf5257bc4b45b595879f47ce8399c87dcd (patch) | |
tree | 3c6b4aba2f3def6822efe100a46c95eaaf5e3fc3 /system/dump | |
parent | 5d1d059e56040daf6d52a436fec6de1116cdfd31 (diff) | |
download | slackbuilds-972ff7cf5257bc4b45b595879f47ce8399c87dcd.tar.gz |
system/dump: Fixed for bash4.
Diffstat (limited to 'system/dump')
-rw-r--r-- | system/dump/dump.SlackBuild | 8 |
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 {} \; |