Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 052828d

Browse files
committed
Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
2 parents 80da993 + 528db31 commit 052828d

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,8 @@ Tests
328328
Build
329329
-----
330330

331+
- Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
332+
331333
- Issue #27705: Update message in validate_ucrtbase.py
332334

333335
- Issue #27976: Deprecate building _ctypes with the bundled copy of libffi on

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)