summaryrefslogtreecommitdiffstats
path: root/libraries/ginac
diff options
context:
space:
mode:
author David Somero2010-05-19 08:36:15 +0200
committer David Somero2010-05-19 08:36:15 +0200
commit3a727f6993830ec282dfcd55a67e5b8103a98dc9 (patch)
treebd3ae105d09734107fd5401c162a74cadbf5cbf2 /libraries/ginac
parent95b34d384ba3cfe99609aea09a835eaccc7f5550 (diff)
downloadslackbuilds-3a727f6993830ec282dfcd55a67e5b8103a98dc9.tar.gz
libraries/ginac: Fixed for bash4.
Diffstat (limited to 'libraries/ginac')
-rw-r--r--libraries/ginac/ginac.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/ginac/ginac.SlackBuild b/libraries/ginac/ginac.SlackBuild
index 94c9bbca90..3af6181430 100644
--- a/libraries/ginac/ginac.SlackBuild
+++ b/libraries/ginac/ginac.SlackBuild
@@ -55,12 +55,8 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install DESTDIR=$PKG
-( 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 {} \;