59ba18a
diff -ru Python-2.6.2-orig/Lib/ctypes/util.py Python-2.6.2/Lib/ctypes/util.py
59ba18a
--- Python-2.6.2-orig/Lib/ctypes/util.py	2009-01-10 12:11:11.000000000 -0500
59ba18a
+++ Python-2.6.2/Lib/ctypes/util.py	2009-07-30 15:17:39.000000000 -0400
59ba18a
@@ -133,7 +133,9 @@
59ba18a
             dump = f.read()
59ba18a
             rv = f.close()
59ba18a
             if rv == 10:
59ba18a
-                raise OSError, 'objdump command not found'
59ba18a
+                return os.path.basename(f) #  This is good for GLibc, I think,
59ba18a
+                                           # and a dep on binutils is big (for
59ba18a
+                                           # live CDs).
59ba18a
             res = re.search(r'\sSONAME\s+([^\s]+)', os.popen(cmd).read())
59ba18a
             if not res:
59ba18a
                 return None
59ba18a
Only in Python-2.6.2/Lib/ctypes: util.py~