python/build/openssl: pass --libdir=lib to Configure

Without this, the AMD64 build installs to "lib64/" which then cannot
be found by CURL.
This commit is contained in:
Max Kellermann 2023-09-26 15:30:22 +02:00
parent 4d6f220a2f
commit cf179ec294
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ class OpenSSLProject(MakeProject):
'no-async', 'no-async',
'no-tests', 'no-tests',
'no-makedepend', 'no-makedepend',
'--libdir=lib', # no "lib64" on amd64, please
openssl_arch, openssl_arch,
'--prefix=' + toolchain.install_prefix, '--prefix=' + toolchain.install_prefix,
] ]