summaryrefslogtreecommitdiffstats
path: root/office/Ted
diff options
context:
space:
mode:
author David Somero2010-05-19 08:46:50 +0200
committer David Somero2010-05-19 08:46:50 +0200
commit112ebef33e5860d5236af244aba25e5df4fafabd (patch)
treeff081b8309f320e20f9b934e6fe16c4ab79184b4 /office/Ted
parent9f498a0046286841e81b0d58ce566ea929956bf1 (diff)
downloadslackbuilds-112ebef33e5860d5236af244aba25e5df4fafabd.tar.gz
office/Ted: Fixed for bash4.
Diffstat (limited to 'office/Ted')
-rw-r--r--office/Ted/Ted.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/office/Ted/Ted.SlackBuild b/office/Ted/Ted.SlackBuild
index d05cde1595..8caf1663f5 100644
--- a/office/Ted/Ted.SlackBuild
+++ b/office/Ted/Ted.SlackBuild
@@ -84,12 +84,8 @@ mkdir -p $PKG/usr/man/man1
mv $PKG/usr/share/$PRGNAM/{rtf2pdf,rtf2ps,$PRGNAM}.1 $PKG/usr/man/man1
mv $PKG/usr/share/$PRGNAM/{rtf2pdf,rtf2ps}.sh $PKG/usr/bin/
-( 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 {} \;