diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:43 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:43 -0400 |
commit | 3de90af192b10249153d5fdba64ac96eaf27b6d1 (patch) | |
tree | c10e4db6fc7ea2abc039709922d4b6ab17e86c57 /system/fish | |
parent | 7888e8259bd804795657fd6232a4858564cc79bf (diff) |
system/fish: Fixed for bash4.
Diffstat (limited to 'system/fish')
-rw-r--r-- | system/fish/fish.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/fish/fish.SlackBuild b/system/fish/fish.SlackBuild index dab91f82170f..ff60e7b4d9c8 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 {} \; |