summarylogtreecommitdiffstats
path: root/0039-mingw-use-backslashes-in-compileall-py.patch
diff options
context:
space:
mode:
authoratomlong2021-10-23 17:55:22 +0800
committeratomlong2021-10-23 18:06:15 +0800
commit80096c8de4b34ec1ed8f30bb428918cd592b2424 (patch)
treeb48dd1e73de9ea35a4709fb6b93deb16331ec514 /0039-mingw-use-backslashes-in-compileall-py.patch
parent89a67c05174951d172252b1db96ff93cc4ec4bcd (diff)
downloadaur-80096c8de4b34ec1ed8f30bb428918cd592b2424.tar.gz
update to 3.9.7
Diffstat (limited to '0039-mingw-use-backslashes-in-compileall-py.patch')
-rw-r--r--0039-mingw-use-backslashes-in-compileall-py.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/0039-mingw-use-backslashes-in-compileall-py.patch b/0039-mingw-use-backslashes-in-compileall-py.patch
new file mode 100644
index 000000000000..cd6c55ba14f0
--- /dev/null
+++ b/0039-mingw-use-backslashes-in-compileall-py.patch
@@ -0,0 +1,30 @@
+From 47c94ca56a6ebe7423ed267a69d1b9931893da3b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9?=
+ <alexey.pawlow@gmail.com>
+Date: Thu, 17 Jun 2021 18:51:53 +0530
+Subject: [PATCH 039/N] mingw use backslashes in compileall py
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Co-authored-by: Алексей <alexey.pawlow@gmail.com>
+---
+ Lib/compileall.py | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/Lib/compileall.py b/Lib/compileall.py
+index 39f4bb3..3490c09 100644
+--- a/Lib/compileall.py
++++ b/Lib/compileall.py
+@@ -38,6 +38,8 @@ def _walk_dir(dir, maxlevels, quiet=0):
+ if name == '__pycache__':
+ continue
+ fullname = os.path.join(dir, name)
++ if sys.platform == "win32" and sys.version.find("GCC") >= 0:
++ fullname = fullname.replace('\\','/')
+ if not os.path.isdir(fullname):
+ yield fullname
+ elif (maxlevels > 0 and name != os.curdir and name != os.pardir and
+--
+2.33.0
+