diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-11-02 17:57:27 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-11-02 17:57:27 +0200 |
commit | 307254b198498e167120d4ec9ce9d72856f5a182 (patch) | |
tree | 1ed2c4bba13ae6c4dad718b4d8971388e866880b /main/py-curl | |
parent | 5e15740aac29817bd94fb66d5bb63dcb43005f36 (diff) | |
download | aports-307254b198498e167120d4ec9ce9d72856f5a182.tar.bz2 aports-307254b198498e167120d4ec9ce9d72856f5a182.tar.xz |
main/py-curl: fix ssl support
the build script needs to know which ssl library is being used
Diffstat (limited to 'main/py-curl')
-rw-r--r-- | main/py-curl/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/py-curl/APKBUILD b/main/py-curl/APKBUILD index cec1ad6ba6..0fc9888a7f 100644 --- a/main/py-curl/APKBUILD +++ b/main/py-curl/APKBUILD @@ -3,7 +3,7 @@ pkgname=py-curl _pkgname=pycurl pkgver=7.43.0 -pkgrel=0 +pkgrel=1 pkgdesc="A Python interface to libcurl" url="http://pycurl.io/" arch="all" @@ -17,6 +17,7 @@ builddir="$srcdir/$_pkgname-$pkgver" build() { cd "$builddir" + export PYCURL_SSL_LIBRARY=openssl python2 setup.py build || return 1 python3 setup.py build } |