summaryrefslogtreecommitdiff
path: root/python/build/openssl.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/build/openssl.py')
-rw-r--r--python/build/openssl.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/build/openssl.py b/python/build/openssl.py
index ecf88d4e2..605a04c74 100644
--- a/python/build/openssl.py
+++ b/python/build/openssl.py
@@ -48,6 +48,7 @@ class OpenSSLProject(MakeProject):
}
openssl_arch = openssl_archs[toolchain.arch]
+ cross_compile_prefix = toolchain.toolchain_arch + '-'
subprocess.check_call(['./Configure',
'no-shared',
@@ -56,6 +57,7 @@ class OpenSSLProject(MakeProject):
'no-tests',
'no-asm', # "asm" causes build failures on Windows
openssl_arch,
+ '--cross-compile-prefix=' + cross_compile_prefix,
'--prefix=' + toolchain.install_prefix],
cwd=src, env=toolchain.env)
MakeProject.build(self, toolchain, src)