Blame SOURCES/python-2.7rc1-binutils-no-dep.patch

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