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)
Please note that we are now sending patches for a review to the anaconda-patches@lists.fedorahosted.org mailing list.
On Thu, 2012-07-12 at 14:50 -0500, Mark Hamzy wrote:
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)
On 07/12/2012 12:50 PM, Mark Hamzy wrote:
libudev bumped the version number up to /usr/lib64/libudev.so.1 Also, change the error message from None.
I've applied your version of the patch as it is slightly better than mine. Thanks!
anaconda-devel@lists.stg.fedoraproject.org