mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-06 11:25:23 +01:00
Change Python -> python
(lowercase convention)
This commit is contained in:
parent
a4d1a445ac
commit
6ec368ce37
46 changed files with 30 additions and 30 deletions
20
sysc/python-3.11.1/patches/empty-date.patch
Normal file
20
sysc/python-3.11.1/patches/empty-date.patch
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
||||
|
||||
SPDX-License-Identifier: PSF-2.0
|
||||
|
||||
When defined __DATE__ is in the format MMM DD YYYY. xx/xx/xx does
|
||||
not comply with this so the parser in Lib/platform.py fails on it.
|
||||
|
||||
Upstream PR: https://github.com/python/cpython/pull/100389
|
||||
|
||||
--- Modules/getbuildinfo.c 2022-12-21 13:41:18.120573458 +1100
|
||||
+++ Modules/getbuildinfo.c 2022-12-21 13:41:30.399716652 +1100
|
||||
@@ -8,7 +8,7 @@
|
||||
#ifdef __DATE__
|
||||
#define DATE __DATE__
|
||||
#else
|
||||
-#define DATE "xx/xx/xx"
|
||||
+#define DATE "xxx xx xxxx"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue