build/openssl: pass RANLIB=... to "make install"
The "install_dev" target runs ranlib during installation, and this can break the Android build.
This commit is contained in:
parent
0f56ddb805
commit
694debd4cc
@ -17,6 +17,12 @@ class OpenSSLProject(MakeProject):
|
|||||||
'build_libs',
|
'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):
|
def build(self, toolchain):
|
||||||
src = self.unpack(toolchain, out_of_tree=False)
|
src = self.unpack(toolchain, out_of_tree=False)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user