OpenSSL: libs may be in lib64 directory (#19862)

This commit is contained in:
Adam J. Stewart 2020-11-12 14:45:45 -06:00 committed by GitHub
parent 72e66bd01f
commit 37e51eb2a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,7 +87,8 @@ def determine_version(cls, exe):
@property
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):
tty.warn("Fetching OpenSSL failed. This may indicate that OpenSSL has "