Skip to content

Commit 69c4ef8

Browse files
pipcl.py: sysconfig_python_flags(): fix bug that was breaking pyodide builds.
1 parent e439a0f commit 69c4ef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipcl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3027,7 +3027,7 @@ def sysconfig_python_flags():
30273027

30283028
includes_ = [include1_]
30293029
if include2_ != include1_:
3030-
includes_.append(include2)
3030+
includes_.append(include2_)
30313031
if windows():
30323032
includes_ = [f'/I"{i}"' for i in includes_]
30333033
ldflags_ = f'/LIBPATH:"{ldflags_}"'

0 commit comments

Comments
 (0)