summaryrefslogtreecommitdiffstats
path: root/libraries/gsl
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:36:22 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:36:22 -0400
commit5f492e2907be3c8580bc01509628180841fdb2eb (patch)
tree6369d19fb0b4b794dc632f769cc87723fab4167f /libraries/gsl
parentadfddd096a14acc73a440c98926a7d148aa640cf (diff)
downloadslackbuilds-5f492e2907be3c8580bc01509628180841fdb2eb.tar.gz
slackbuilds-5f492e2907be3c8580bc01509628180841fdb2eb.tar.xz
libraries/gsl: Fixed for bash4.
Diffstat (limited to 'libraries/gsl')
-rw-r--r--libraries/gsl/gsl.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/gsl/gsl.SlackBuild b/libraries/gsl/gsl.SlackBuild
index 72b60e732c..e0779001cf 100644
--- a/libraries/gsl/gsl.SlackBuild
+++ b/libraries/gsl/gsl.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 {} \;