summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:33:05 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:33:05 -0400
commit2844792192dd8abb15a8550069780d90dafd514d (patch)
treee751f1691c67dcde3ab7add765862c70133fcdd9 /development
parent2deab60cf34ca14a8f107e40f82e1c3728536ca9 (diff)
downloadslackbuilds-2844792192dd8abb15a8550069780d90dafd514d.tar.gz
slackbuilds-2844792192dd8abb15a8550069780d90dafd514d.tar.xz
development/Cython: Fixed for bash4.
Diffstat (limited to 'development')
-rw-r--r--development/Cython/Cython.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/development/Cython/Cython.SlackBuild b/development/Cython/Cython.SlackBuild
index 09db313c19..70e6a6e1e7 100644
--- a/development/Cython/Cython.SlackBuild
+++ b/development/Cython/Cython.SlackBuild
@@ -30,12 +30,8 @@ find . \
python setup.py install --root=$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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \