From cf179ec294a49ccd6cd30935f25cfb40457710e6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 26 Sep 2023 15:30:22 +0200 Subject: [PATCH] python/build/openssl: pass --libdir=lib to Configure Without this, the AMD64 build installs to "lib64/" which then cannot be found by CURL. --- python/build/openssl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/build/openssl.py b/python/build/openssl.py index 245a0d983..88f221c9e 100644 --- a/python/build/openssl.py +++ b/python/build/openssl.py @@ -64,6 +64,7 @@ class OpenSSLProject(MakeProject): 'no-async', 'no-tests', 'no-makedepend', + '--libdir=lib', # no "lib64" on amd64, please openssl_arch, '--prefix=' + toolchain.install_prefix, ]