From e5dd421df5bd1526a9ae69dd3958bafe4a9510bf Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:47:57 -0400 Subject: system/biew: Fixed for bash4. --- system/biew/biew.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'system/biew') 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 {} \; -- cgit v1.2.3-65-gdbad