OpenSSL: libs may be in lib64 directory (#19862)
This commit is contained in:
parent
72e66bd01f
commit
37e51eb2a5
1 changed files with 2 additions and 1 deletions
|
@ -87,7 +87,8 @@ def determine_version(cls, exe):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def libs(self):
|
def libs(self):
|
||||||
return find_libraries(['libssl', 'libcrypto'], root=self.prefix.lib)
|
return find_libraries(
|
||||||
|
['libssl', 'libcrypto'], root=self.prefix, recursive=True)
|
||||||
|
|
||||||
def handle_fetch_error(self, error):
|
def handle_fetch_error(self, error):
|
||||||
tty.warn("Fetching OpenSSL failed. This may indicate that OpenSSL has "
|
tty.warn("Fetching OpenSSL failed. This may indicate that OpenSSL has "
|
||||||
|
|
Loading…
Reference in a new issue