]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - python/patches/python-2.7rc1-binutils-no-dep.patch
tzdata: Update to 2014j
[people/ms/ipfire-3.x.git] / python / patches / python-2.7rc1-binutils-no-dep.patch
CommitLineData
48d9a6a0
MT
1diff -up Python-2.7rc1/Lib/ctypes/util.py.binutils-no-dep Python-2.7rc1/Lib/ctypes/util.py
2--- Python-2.7rc1/Lib/ctypes/util.py.binutils-no-dep 2010-03-15 09:42:23.000000000 -0400
3+++ Python-2.7rc1/Lib/ctypes/util.py 2010-06-06 05:03:02.155975210 -0400
4@@ -140,7 +140,9 @@ elif os.name == "posix":
5 dump = f.read()
6 rv = f.close()
7 if rv == 10:
8- raise OSError, 'objdump command not found'
9+ return os.path.basename(f) # This is good for GLibc, I think,
10+ # and a dep on binutils is big (for
11+ # live CDs).
12 f = os.popen(cmd)
13 try:
14 data = f.read()