diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-01-09 21:37:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-09 21:37:50 -0800 |
commit | f6decc57f7b31a131275fb03ff9f841c761a2865 (patch) | |
tree | 982d71da4cdfda694c44e5d8b3970ead055f19e9 /Mac/BuildScript/build-installer.py | |
parent | bc87339d1e2de23d3dc3a848784dfffe6559c915 (diff) | |
download | cpython-git-f6decc57f7b31a131275fb03ff9f841c761a2865.tar.gz |
gh-100180: Update macOS installer to OpenSSL 1.1.1s (GH-100908)
(cherry picked from commit 57a5259a438c717755fc667fcbedb515ef8e0c85)
Co-authored-by: Ned Deily <nad@python.org>
Diffstat (limited to 'Mac/BuildScript/build-installer.py')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index a200fb3fc9..73a725cb44 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -246,10 +246,9 @@ def library_recipes(): result.extend([ dict( - name="OpenSSL 1.1.1q", - url="https://www.openssl.org/source/openssl-1.1.1q.tar.gz", - checksum='d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51bf8c8fd10ca', - patches=['openssl1.1.1q-pr-18719.patch'], + name="OpenSSL 1.1.1s", + url="https://www.openssl.org/source/openssl-1.1.1s.tar.gz", + checksum='c5ac01e760ee6ff0dab61d6b2bbd30146724d063eb322180c6f18a6f74e4b6aa', buildrecipe=build_universal_openssl, configure=None, install=None, |