summaryrefslogtreecommitdiffstats
path: root/system/biew
diff options
context:
space:
mode:
Diffstat (limited to 'system/biew')
-rw-r--r--system/biew/biew.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/biew/biew.SlackBuild b/system/biew/biew.SlackBuild
index b477fb91fc..82a2b63138 100644
--- a/system/biew/biew.SlackBuild
+++ b/system/biew/biew.SlackBuild
@@ -55,12 +55,8 @@ make install \
DATADIR=$PKG/usr/share/biew \
LIBDIR=$PKG/usr/lib$LIBDIRSUFFIX/biew
-( 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 || 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 {} \;