Skip to content
Snippets Groups Projects
Commit 644b64c9 authored by Nguyen Anh Quynh's avatar Nguyen Anh Quynh
Browse files

python: attempt to load libkeystone.so from /usr/local for Linux, too

parent 105761ff
Branches
Tags
No related merge requests found
......@@ -56,9 +56,9 @@ if _found == False:
except OSError:
pass
# Attempt Darwin specific load (10.11 specific),
# Attempt Linux/Darwin specific load (10.11 specific),
# since LD_LIBRARY_PATH is not guaranteed to exist
if (_found == False) and (system() == 'Darwin'):
if (_found == False) and (system() != 'Windows'):
_lib_path = '/usr/local/lib/'
for _lib in _all_libs:
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment