summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-05-19 08:50:50 +0200
committer David Somero2010-05-19 08:50:50 +0200
commitff156f357e06a7f765dca9b67b172f120f469726 (patch)
treeb581f5d2d44c042f21d4c38f6ccc4d4848ee2563 /system
parent46c0047058fe2aaafb8a41f1039b8db4bc04d621 (diff)
downloadslackbuilds-ff156f357e06a7f765dca9b67b172f120f469726.tar.gz
system/worker: Fixed for bash4.
Diffstat (limited to 'system')
-rw-r--r--system/worker/worker.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/worker/worker.SlackBuild b/system/worker/worker.SlackBuild
index 58c69fe88a..37779ad0b8 100644
--- a/system/worker/worker.SlackBuild
+++ b/system/worker/worker.SlackBuild
@@ -73,12 +73,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
gzip -9 $PKG/usr/man/man?/*
gzip -9 $PKG/usr/man/fr/man?/*