Skip to content

Commit 528db31

Browse files
committed
Issue python#27566: Fix clean target in freeze makefile (patch by Lisa Roach)
1 parent f2bdb6b commit 528db31

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,8 @@ Windows
301301
Build
302302
-----
303303

304+
- Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
305+
304306
- Issue #27705: Update message in validate_ucrtbase.py
305307

306308
- Issue #27983: Cause lack of llvm-profdata tool when using clang as

Tools/freeze/winmakemakefile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,5 +144,5 @@ def realwork(vars, moddefns, target):
144144
print("<<")
145145
print()
146146
print("clean:")
147-
print("\t-rm -f *.obj")
148-
print("\t-rm -f $(target).exe")
147+
print("\t-del /f *.obj")
148+
print("\t-del /f $(target).exe")

0 commit comments

Comments
 (0)