0530-msys-mingw-prefer-unix-sep-if-MSYSTEM.patch
0535-msys-cygwin-semi-native-build-sysconfig.patch
Add a bug-fix from Arch Linux mingw-w64-python 2.7.6
for a memory stomp.
Fix python{3.3m}-config.sh to return correct values.
Tidy up the PKGBUILD files.
13 lines
485 B
Diff
13 lines
485 B
Diff
diff -urN a/Lib/compileall.py b/Lib/compileall.py
|
|
--- a/Lib/compileall.py 2014-01-22 20:57:37.069048823 +0000
|
|
+++ b/Lib/compileall.py 2014-01-22 20:57:37.429054390 +0000
|
|
@@ -42,6 +42,8 @@
|
|
success = 1
|
|
for name in names:
|
|
fullname = os.path.join(dir, name)
|
|
+ if sys.platform == "win32" and sys.version.find("GCC") >= 0:
|
|
+ fullname = fullname.replace('\\','/')
|
|
if ddir is not None:
|
|
dfile = os.path.join(ddir, name)
|
|
else:
|