summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/build/openssl.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/python/build/openssl.py b/python/build/openssl.py
index a7350e6ac..ecf88d4e2 100644
--- a/python/build/openssl.py
+++ b/python/build/openssl.py
@@ -17,6 +17,12 @@ class OpenSSLProject(MakeProject):
'build_libs',
]
+ def get_make_install_args(self, toolchain):
+ # OpenSSL's Makefile runs "ranlib" during installation
+ return MakeProject.get_make_install_args(self, toolchain) + [
+ 'RANLIB=' + toolchain.ranlib,
+ ]
+
def build(self, toolchain):
src = self.unpack(toolchain, out_of_tree=False)