summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
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
commit30977fea43fb69674770e232538bb0c7a2306bb3 (patch)
treec9594111f5d2da303e305306e16ce59b62580b0c /office
parent9066463330f1190756f475ba92605d5f4b78272a (diff)
downloadslackbuilds-30977fea43fb69674770e232538bb0c7a2306bb3.tar.gz
slackbuilds-30977fea43fb69674770e232538bb0c7a2306bb3.tar.xz
office/go_openoffice: Fixed for bash4.
Diffstat (limited to 'office')
-rw-r--r--office/go_openoffice/go_openoffice.SlackBuild8
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 {} \;