* add libb2 as dep * remove "-Wl,--large-address-aware", default now via makepkg * remove 2to3 logic, no longer in Python
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From d32c498c94d09a7bb82bdcf48a02502f70b4fc30 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 024/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 47e2446..8e02d02 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
|