diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:50 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:50 -0400 |
commit | ff156f357e06a7f765dca9b67b172f120f469726 (patch) | |
tree | b581f5d2d44c042f21d4c38f6ccc4d4848ee2563 /system/worker | |
parent | 46c0047058fe2aaafb8a41f1039b8db4bc04d621 (diff) | |
download | slackbuilds-ff156f357e06a7f765dca9b67b172f120f469726.tar.gz |
system/worker: Fixed for bash4.
Diffstat (limited to 'system/worker')
-rw-r--r-- | system/worker/worker.SlackBuild | 8 |
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?/* |