summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-09-25 17:18:50 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-09-25 17:18:50 +0200
commit23a4c8d154df6444397a5f38c732cd74f39f8cfa (patch)
tree882ad2e18b136aabd7ea9da9262ab150a9d85779 /platform/linuxbsd/detect.py
parentce04b9a5519418a893ae624ce6bd993e87e2d1c6 (diff)
parentb362976504c3346b9f34b69dcad0838d1d381037 (diff)
downloadredot-engine-23a4c8d154df6444397a5f38c732cd74f39f8cfa.tar.gz
Merge pull request #82290 from akien-mga/scons-python3.12-syntax-error-escape-sequences
SCons: Fix Python 3.12 SyntaxError with regex escape sequences
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r--platform/linuxbsd/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py
index a723bb5d58..571d2a47d8 100644
--- a/platform/linuxbsd/detect.py
+++ b/platform/linuxbsd/detect.py
@@ -455,7 +455,7 @@ def configure(env: "Environment"):
linker_version_str = subprocess.check_output(
[env.subst(env["LINK"]), "-Wl,--version"] + env.subst(env["LINKFLAGS"])
).decode("utf-8")
- gnu_ld_version = re.search("^GNU ld [^$]*(\d+\.\d+)$", linker_version_str, re.MULTILINE)
+ gnu_ld_version = re.search(r"^GNU ld [^$]*(\d+\.\d+)$", linker_version_str, re.MULTILINE)
if not gnu_ld_version:
print(
"Warning: Creating export template binaries enabled for PCK embedding is currently only supported with GNU ld, not gold, LLD or mold."