Merge pull request #1795 from rhelmot/dev

Use libunicorn.so.2 as fallback path
This commit is contained in:
2023-03-02 20:15:52 +01:00
committed by GitHub

View File

@@ -94,7 +94,7 @@ _path_list = [os.getenv('LIBUNICORN_PATH', None),
for _path in _path_list:
if _path is None: continue
_uc = _load_lib(_path, _lib.get(sys.platform, "libunicorn.so"))
_uc = _load_lib(_path, _lib.get(sys.platform, "libunicorn.so.2"))
if _uc is not None:
break