diff options
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 |
commit | 32fa1cdb208e854397ecac43fd39d4cf28ef0ff9 (patch) | |
tree | 78b363701735ca39a29bb948bc0456f52a8cf0ca /libraries/pyOpenSSL | |
parent | 1ed58269f0eba2aa0161ef14825c5bc930b2be37 (diff) | |
download | slackbuilds-32fa1cdb208e854397ecac43fd39d4cf28ef0ff9.tar.gz |
libraries/pyOpenSSL: Fixed for bash4.
Diffstat (limited to 'libraries/pyOpenSSL')
-rw-r--r-- | libraries/pyOpenSSL/pyOpenSSL.SlackBuild | 8 |
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 |