summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:58 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:58 -0400
commit32fa1cdb208e854397ecac43fd39d4cf28ef0ff9 (patch)
tree78b363701735ca39a29bb948bc0456f52a8cf0ca /libraries
parent1ed58269f0eba2aa0161ef14825c5bc930b2be37 (diff)
downloadslackbuilds-32fa1cdb208e854397ecac43fd39d4cf28ef0ff9.tar.gz
slackbuilds-32fa1cdb208e854397ecac43fd39d4cf28ef0ff9.tar.xz
libraries/pyOpenSSL: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r--libraries/pyOpenSSL/pyOpenSSL.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/pyOpenSSL/pyOpenSSL.SlackBuild b/libraries/pyOpenSSL/pyOpenSSL.SlackBuild
index a0e8111ba8..1d806d269d 100644
--- a/libraries/pyOpenSSL/pyOpenSSL.SlackBuild
+++ b/libraries/pyOpenSSL/pyOpenSSL.SlackBuild
@@ -53,12 +53,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 $DOCS $PKG/usr/doc/$PRGNAM-$VERSION