python/build/openssl: remove obsolete variable

This commit is contained in:
Max Kellermann 2023-09-26 15:32:40 +02:00
parent 94af199c49
commit 49130c2018
1 changed files with 1 additions and 3 deletions

View File

@ -30,7 +30,7 @@ class OpenSSLProject(MakeProject):
# OpenSSL has a weird target architecture scheme with lots of
# hard-coded architectures; this table translates between our
# "toolchain_arch" (HOST_TRIPLET) and the OpenSSL target
# host triplet and the OpenSSL target
openssl_archs = {
# not using "android-*" because those OpenSSL targets want
# to know where the SDK is, but our own build scripts
@ -53,8 +53,6 @@ class OpenSSLProject(MakeProject):
'aarch64-apple-darwin': 'darwin64-arm64-cc',
}
openssl_arch = openssl_archs[toolchain.host_triplet]
configure = [
'./Configure',
'no-shared',