summaryrefslogtreecommitdiffstats
path: root/system/runit
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:50:25 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:50:25 -0400
commit2196a52b1b0b6993876659d59f6761cf51acf155 (patch)
treef3165d433c942ae23a0a81e2dadf9accef86b0f1 /system/runit
parent5a0e8a9c928c8f6288fd2e10eed8376776c3e93a (diff)
downloadslackbuilds-2196a52b1b0b6993876659d59f6761cf51acf155.tar.gz
slackbuilds-2196a52b1b0b6993876659d59f6761cf51acf155.tar.xz
system/runit: Fixed for bash4.
Diffstat (limited to 'system/runit')
-rw-r--r--system/runit/runit.SlackBuild8
1 files changed, 2 insertions, 6 deletions
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 {} \;