aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib_pypy/tools/build_cffi_imports.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_pypy/tools/build_cffi_imports.py b/lib_pypy/tools/build_cffi_imports.py
index 84e77bc7de..596e636379 100644
--- a/lib_pypy/tools/build_cffi_imports.py
+++ b/lib_pypy/tools/build_cffi_imports.py
@@ -51,7 +51,7 @@ cffi_dependencies = {
['make', '-s', '-j', str(multiprocessing.cpu_count())],
['make', 'install', 'DESTDIR={}/'.format(deps_destdir)],
]),
- '_ssl': ('https://www.openssl.org/source/openssl-1.1.1c.tar.gz',
+ '_ssl': ('https://www.openssl.org/source/old/1.1.1/openssl-1.1.1c.tar.gz',
'f6fb3079ad15076154eda9413fed42877d668e7069d9b87396d0804fdb3f4c90',
[['./config', '--prefix=/usr', 'no-shared'],
['make', '-s', '-j', str(multiprocessing.cpu_count())],
@@ -117,7 +117,7 @@ def _build_dependency(name, patches=[]):
# make sure the hash matches
if _sha256(archive) != dgst:
- return 1, '{} archive {} hash mismatch'.format(key, archive), ''
+ return 1, '{} archive {} hash mismatch'.format(name, archive), ''
shutil.rmtree(deps_destdir, ignore_errors=True)
os.makedirs(deps_destdir)