From 49130c201825cd277590ac53a2bf805fa9242001 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max.kellermann@gmail.com>
Date: Tue, 26 Sep 2023 15:32:40 +0200
Subject: [PATCH] python/build/openssl: remove obsolete variable

---
 python/build/openssl.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/python/build/openssl.py b/python/build/openssl.py
index 154658e33..8b0224598 100644
--- a/python/build/openssl.py
+++ b/python/build/openssl.py
@@ -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',