diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:57 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:57 -0400 |
commit | e5dd421df5bd1526a9ae69dd3958bafe4a9510bf (patch) | |
tree | d57f1a27e9a9852bfd237e2764958fed3d911557 /system/biew | |
parent | facd0a62290330b70c7eb90165ef2c7e40851e56 (diff) | |
download | slackbuilds-e5dd421df5bd1526a9ae69dd3958bafe4a9510bf.tar.gz |
system/biew: Fixed for bash4.
Diffstat (limited to 'system/biew')
-rw-r--r-- | system/biew/biew.SlackBuild | 8 |
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 {} \; |