Skip to content

Commit 4caba34

Browse files
committed
windows: fix typo in copyfile() for config.c
Can't believe I didn't detect this bug when I introduced it yesterday!
1 parent accb1c9 commit 4caba34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpython-windows/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ def find_additional_dependencies(project: pathlib.Path):
13381338

13391339
# Copy config.c into output directory, next to its object file.
13401340
shutil.copyfile(
1341-
pcbuild_path / ".." / "PC", "config.c", out_dir / "build" / "core" / "config.c"
1341+
pcbuild_path / ".." / "PC" / "config.c", out_dir / "build" / "core" / "config.c"
13421342
)
13431343

13441344
assert "build/core/config.obj" in res["core"]["objs"]

0 commit comments

Comments
 (0)