Commit b2b12172 authored by doko@ubuntu.com's avatar doko@ubuntu.com

- Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars

  appearing before $() vars.
parent 885e1939
...@@ -260,7 +260,12 @@ def _parse_makefile(filename, vars=None): ...@@ -260,7 +260,12 @@ def _parse_makefile(filename, vars=None):
while len(variables) > 0: while len(variables) > 0:
for name in tuple(variables): for name in tuple(variables):
value = notdone[name] value = notdone[name]
m = _findvar1_rx.search(value) or _findvar2_rx.search(value) m1 = _findvar1_rx.search(value)
m2 = _findvar2_rx.search(value)
if m1 and m2:
m = m1 if m1.start() < m2.start() else m2
else:
m = m1 if m1 else m2
if m is not None: if m is not None:
n = m.group(1) n = m.group(1)
found = True found = True
......
...@@ -44,6 +44,9 @@ Core and Builtins ...@@ -44,6 +44,9 @@ Core and Builtins
Library Library
------- -------
- Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars
appearing before $() vars.
- Issue #22138: Fix mock.patch behavior when patching descriptors. Restore - Issue #22138: Fix mock.patch behavior when patching descriptors. Restore
original values after patching. Patch contributed by Sean McCully. original values after patching. Patch contributed by Sean McCully.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment