summaryrefslogtreecommitdiffstats
path: root/system/kvm
diff options
context:
space:
mode:
author David Somero2010-05-19 08:49:31 +0200
committer David Somero2010-05-19 08:49:31 +0200
commite4937e2e47bfd09424803707ca5829fed96a9125 (patch)
tree8ce57dc0a4b03f42482dbca12960e47eac6dc87d /system/kvm
parent7d16d8f9d13ddfee2f57d073f16e879e2231241e (diff)
downloadslackbuilds-e4937e2e47bfd09424803707ca5829fed96a9125.tar.gz
system/kvm: Fixed for bash4.
Diffstat (limited to 'system/kvm')
-rw-r--r--system/kvm/kvm.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/kvm/kvm.SlackBuild b/system/kvm/kvm.SlackBuild
index 6f7cb625d7..53ca79bfef 100644
--- a/system/kvm/kvm.SlackBuild
+++ b/system/kvm/kvm.SlackBuild
@@ -123,12 +123,8 @@ override kvm-amd ${KERNEL} extra
override kvm-intel ${KERNEL} extra
EOF
-( 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 {} \;