summaryrefslogtreecommitdiffstats
path: root/system/biew
diff options
context:
space:
mode:
author David Somero2010-05-19 08:47:57 +0200
committer David Somero2010-05-19 08:47:57 +0200
commite5dd421df5bd1526a9ae69dd3958bafe4a9510bf (patch)
treed57f1a27e9a9852bfd237e2764958fed3d911557 /system/biew
parentfacd0a62290330b70c7eb90165ef2c7e40851e56 (diff)
downloadslackbuilds-e5dd421df5bd1526a9ae69dd3958bafe4a9510bf.tar.gz
system/biew: Fixed for bash4.
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 {} \;