Skip to content

Commit

Permalink
python/build/openssl: remove obsolete variable
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKellermann committed Sep 26, 2023
1 parent 94af199 commit 49130c2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/build/openssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def _build(self, toolchain: AnyToolchain) -> None:

# 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
Expand All @@ -53,8 +53,6 @@ def _build(self, toolchain: AnyToolchain) -> None:
'aarch64-apple-darwin': 'darwin64-arm64-cc',
}

openssl_arch = openssl_archs[toolchain.host_triplet]

configure = [
'./Configure',
'no-shared',
Expand Down

0 comments on commit 49130c2

Please sign in to comment.