Skip to content

Commit d509394

Browse files
committed
Replace url
1 parent 5b8070e commit d509394

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pythonforandroid/recipes/openssl/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
from functools import partial
22

3-
from pythonforandroid.toolchain import Recipe, shprint, current_directory
43
import sh
54

5+
from pythonforandroid.toolchain import Recipe, shprint, current_directory
6+
67

78
class OpenSSLRecipe(Recipe):
89
version = '1.0.2h'
9-
url = 'https://www.openssl.org/source/openssl-{version}.tar.gz'
10+
#url = 'https://www.openssl.org/source/openssl-{version}.tar.gz'
11+
url = 'https://github.com/openssl/openssl/archive/OpenSSL_1_0_2n.tar.gz'
1012

1113
def should_build(self, arch):
1214
return not self.has_libs(arch, 'libssl' + self.version + '.so',

0 commit comments

Comments
 (0)