summaryrefslogtreecommitdiffstats
path: root/system/openct
diff options
context:
space:
mode:
Diffstat (limited to 'system/openct')
-rw-r--r--system/openct/openct.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/openct/openct.SlackBuild b/system/openct/openct.SlackBuild
index 8f1246997b..8c96ffc4ed 100644
--- a/system/openct/openct.SlackBuild
+++ b/system/openct/openct.SlackBuild
@@ -161,12 +161,8 @@ chown $USR_GRP $PKG/var/run/openct
# Make directory for openct modules (not bundled with openct)
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/ifd
-( 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
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;