From ff156f357e06a7f765dca9b67b172f120f469726 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:50:50 -0400 Subject: system/worker: Fixed for bash4. --- system/worker/worker.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'system/worker') 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?/* -- cgit v1.2.3