From ba1a664b09856a7842dce8a1d53c7cd557769b71 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Sat, 9 Aug 2025 12:11:33 +0100 Subject: [PATCH] pipcl.py: sysconfig_python_flags(): fix bug that was breaking pyodide builds. --- pipcl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipcl.py b/pipcl.py index fd737b0e4..02a32099a 100644 --- a/pipcl.py +++ b/pipcl.py @@ -3027,7 +3027,7 @@ def sysconfig_python_flags(): includes_ = [include1_] if include2_ != include1_: - includes_.append(include2) + includes_.append(include2_) if windows(): includes_ = [f'/I"{i}"' for i in includes_] ldflags_ = f'/LIBPATH:"{ldflags_}"'