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