diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:11 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:11 -0400 |
commit | 30977fea43fb69674770e232538bb0c7a2306bb3 (patch) | |
tree | c9594111f5d2da303e305306e16ce59b62580b0c /office/go_openoffice | |
parent | 9066463330f1190756f475ba92605d5f4b78272a (diff) | |
download | slackbuilds-30977fea43fb69674770e232538bb0c7a2306bb3.tar.gz |
office/go_openoffice: Fixed for bash4.
Diffstat (limited to 'office/go_openoffice')
-rw-r--r-- | office/go_openoffice/go_openoffice.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/office/go_openoffice/go_openoffice.SlackBuild b/office/go_openoffice/go_openoffice.SlackBuild index c5bb9cc8fe..a1dd9bbf75 100644 --- a/office/go_openoffice/go_openoffice.SlackBuild +++ b/office/go_openoffice/go_openoffice.SlackBuild @@ -188,12 +188,8 @@ cd - mv $PKG/etc/bash_completion.d/ooffice.sh \ $PKG/etc/bash_completion.d/go_ooffice.sh.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 || 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 {} \; |