diff options
Diffstat (limited to 'system/runit/runit.SlackBuild')
-rw-r--r-- | system/runit/runit.SlackBuild | 8 |
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 {} \; |