You need to sign in or sign up before continuing.
Commit cf179ec2 authored by Max Kellermann's avatar Max Kellermann

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

Without this, the AMD64 build installs to "lib64/" which then cannot be found by CURL.
parent 4d6f220a
...@@ -64,6 +64,7 @@ class OpenSSLProject(MakeProject): ...@@ -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,
] ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment