There was an error while loading. Please reload this page.
2 parents 80da993 + 528db31 commit 052828dCopy full SHA for 052828d
2 files changed
Misc/NEWS
@@ -328,6 +328,8 @@ Tests
328
Build
329
-----
330
331
+- Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
332
+
333
- Issue #27705: Update message in validate_ucrtbase.py
334
335
- Issue #27976: Deprecate building _ctypes with the bundled copy of libffi on
Tools/freeze/winmakemakefile.py
@@ -144,5 +144,5 @@ def realwork(vars, moddefns, target):
144
print("<<")
145
print()
146
print("clean:")
147
- print("\t-rm -f *.obj")
148
- print("\t-rm -f $(target).exe")
+ print("\t-del /f *.obj")
+ print("\t-del /f $(target).exe")
0 commit comments