Don't try to find OpenSSL 1.0.x

This commit is contained in:
shortcutme 2019-09-15 22:08:20 +02:00
parent 96759e9303
commit 4293a44c93
No known key found for this signature in database
GPG Key ID: 5B63BAE6CB9613AE
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ def getOpensslPath():
logging.debug("OpenSSL lib not found in: %s (%s)" % (path, err))
lib_path = (
find_library_original('ssl.so.1.0') or find_library_original('ssl') or
find_library_original('ssl.so') or find_library_original('ssl') or
find_library_original('crypto') or find_library_original('libcrypto') or 'libeay32'
)