[PATCH] libudev now has a version of .1

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



libudev bumped the version number up to /usr/lib64/libudev.so.1
Also, change the error message from None.

---
 pyanaconda/pyudev.py |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/pyanaconda/pyudev.py b/pyanaconda/pyudev.py
index 4b5d586..705b93d 100644
--- a/pyanaconda/pyudev.py
+++ b/pyanaconda/pyudev.py
@@ -31,10 +31,12 @@ def find_library(name, somajor=0):
         return None
 
 # find the udev library
-libudev = find_library(name="udev", somajor=0)
+name = "udev"
+somajor = 1
+libudev = find_library(name=name, somajor=somajor)
 
 if not libudev or not os.path.exists(libudev):
-    raise ImportError, "No library named %s" % libudev
+    raise ImportError, "No library named %s.%d" % (name, somajor)
 
 # load the udev library
 libudev = CDLL(libudev)
-- 
1.7.10.1

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list


[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux