summaryrefslogtreecommitdiffstats
path: root/academic
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:30:43 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:30:43 -0400
commitc07f2733f64013ca1d343130905efb88ed06bab5 (patch)
tree6b85fa207b92e690d8d9e1debdfc6408e4141ead /academic
parente8d33b306df673f9d779cf83a6fc89c088d336fb (diff)
downloadslackbuilds-c07f2733f64013ca1d343130905efb88ed06bab5.tar.gz
slackbuilds-c07f2733f64013ca1d343130905efb88ed06bab5.tar.xz
academic/octave: Fixed for bash4.
Diffstat (limited to 'academic')
-rw-r--r--academic/octave/octave.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/academic/octave/octave.SlackBuild b/academic/octave/octave.SlackBuild
index 72e74b472f..107a2a4b65 100644
--- a/academic/octave/octave.SlackBuild
+++ b/academic/octave/octave.SlackBuild
@@ -68,12 +68,8 @@ make install-strip DESTDIR=$PKG
# install-strip doesn't strip the files in usr/lib/octave-$VERSION,
# so leave this in for now.
-( 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 {} \;