From 3de90af192b10249153d5fdba64ac96eaf27b6d1 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:48:43 -0400 Subject: system/fish: Fixed for bash4. --- system/fish/fish.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'system/fish') diff --git a/system/fish/fish.SlackBuild b/system/fish/fish.SlackBuild index dab91f8217..ff60e7b4d9 100644 --- a/system/fish/fish.SlackBuild +++ b/system/fish/fish.SlackBuild @@ -75,12 +75,8 @@ make install DESTDIR=$PKG # Let's not clobber the config mv $PKG/etc/fish/config.fish $PKG/etc/fish/config.fish.new -( 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 {} \; -- cgit v1.2.3