58f477b403
- Refreshed patches: 55 (systemtap), 111 (no static lib), 146 (hashlib fips), 153 (fix test_gdb noise), 157 (uid, gid overflow - fixed upstream, just keeping few more downstream tests) - Removed patches: 3 (audiotest.au made it to upstream tarball) - Removed workaround for http://bugs.python.org/issue14774, discussed in http://bugs.python.org/issue15298 and fixed in revision 24d52d3060e8.
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
diff -r 39b9b05c3085 Lib/distutils/sysconfig.py
|
|
--- a/Lib/distutils/sysconfig.py Wed Apr 10 00:27:23 2013 +0200
|
|
+++ b/Lib/distutils/sysconfig.py Wed Apr 10 10:14:18 2013 +0200
|
|
@@ -362,7 +362,10 @@
|
|
done[n] = item = ""
|
|
if found:
|
|
after = value[m.end():]
|
|
- value = value[:m.start()] + item + after
|
|
+ value = value[:m.start()]
|
|
+ if item.strip() not in value:
|
|
+ value += item
|
|
+ value += after
|
|
if "$" in after:
|
|
notdone[name] = value
|
|
else:
|
|
diff -r 39b9b05c3085 Lib/sysconfig.py
|
|
--- a/Lib/sysconfig.py Wed Apr 10 00:27:23 2013 +0200
|
|
+++ b/Lib/sysconfig.py Wed Apr 10 10:14:18 2013 +0200
|
|
@@ -296,7 +296,10 @@
|
|
|
|
if found:
|
|
after = value[m.end():]
|
|
- value = value[:m.start()] + item + after
|
|
+ value = value[:m.start()]
|
|
+ if item.strip() not in value:
|
|
+ value += item
|
|
+ value += after
|
|
if "$" in after:
|
|
notdone[name] = value
|
|
else:
|