From 2196a52b1b0b6993876659d59f6761cf51acf155 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:50:25 -0400 Subject: system/runit: Fixed for bash4. --- system/runit/runit.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'system/runit') diff --git a/system/runit/runit.SlackBuild b/system/runit/runit.SlackBuild index 66c289b92d..5c4da649f2 100644 --- a/system/runit/runit.SlackBuild +++ b/system/runit/runit.SlackBuild @@ -46,12 +46,8 @@ install -D -m0750 etc/2 $PKG/sbin/runsvdir-start install -d $PKG/usr/man/man8 install -m 644 man/* $PKG/usr/man/man8 -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs str ip --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 {} \; -- cgit v1.2.3-65-gdbad