summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author David Somero2010-05-19 08:39:16 +0200
committer David Somero2010-05-19 08:39:16 +0200
commit18c0c69c1633ea78852c5b7fba71e92f8979b436 (patch)
tree57d1df80b7f7be088bd7e9e1dbdbcfe1595c9173 /libraries
parentda80291afc201fcb2a9cef334b8ad1ae6350392c (diff)
downloadslackbuilds-18c0c69c1633ea78852c5b7fba71e92f8979b436.tar.gz
libraries/python-spidermonkey: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r--libraries/python-spidermonkey/python-spidermonkey.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/python-spidermonkey/python-spidermonkey.SlackBuild b/libraries/python-spidermonkey/python-spidermonkey.SlackBuild
index f2d6e6485b..de00a3772d 100644
--- a/libraries/python-spidermonkey/python-spidermonkey.SlackBuild
+++ b/libraries/python-spidermonkey/python-spidermonkey.SlackBuild
@@ -35,12 +35,8 @@ sed -i '/ez_setup/d' setup.py MANIFEST.in
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 LICENSE $PKG/usr/doc/$PRGNAM-$VERSION