925e6b
diff -up Python-2.7rc1/Lib/ctypes/util.py.binutils-no-dep Python-2.7rc1/Lib/ctypes/util.py
925e6b
--- Python-2.7rc1/Lib/ctypes/util.py.binutils-no-dep	2010-03-15 09:42:23.000000000 -0400
925e6b
+++ Python-2.7rc1/Lib/ctypes/util.py	2010-06-06 05:03:02.155975210 -0400
925e6b
@@ -140,7 +140,9 @@ elif os.name == "posix":
925e6b
             dump = f.read()
925e6b
             rv = f.close()
925e6b
             if rv == 10:
925e6b
-                raise OSError, 'objdump command not found'
925e6b
+                return os.path.basename(f) #  This is good for GLibc, I think,
925e6b
+                                           # and a dep on binutils is big (for
925e6b
+                                           # live CDs).
925e6b
             f = os.popen(cmd)
925e6b
             try:
925e6b
                 data = f.read()