Make sure we always check /lib64 and /lib in find_library (#555669).
LD_LIBRARY_PATH ended up being /tmp/updates on my test system, so make
sure we always check the default library paths in find_library().
---
pyudev.py | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pyudev.py b/pyudev.py
index b6e5ea9..58ea074 100644
--- a/pyudev.py
+++ b/pyudev.py
@@ -9,11 +9,12 @@ from ctypes import *
# XXX this one may need some tweaking...
def find_library(name, somajor=0):
env = os.environ.get("LD_LIBRARY_PATH")
+ common = ["/lib64", "/lib"]
if env:
- libdirs = env.split(":")
+ libdirs = env.split(":") + common
else:
- libdirs = ["/lib64", "/lib"]
+ libdirs = common