From: Steve Dower Date: Sat, 10 Sep 2016 01:38:20 +0000 (-0700) Subject: Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) X-Git-Tag: v3.6.0b1~129^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=528db31bd90fcf2603e7bcc416e010674872e6d3;p=python Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) --- diff --git a/Misc/NEWS b/Misc/NEWS index 79717c38f8..443609ab9d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -301,6 +301,8 @@ Windows Build ----- +- Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) + - Issue #27705: Update message in validate_ucrtbase.py - Issue #27983: Cause lack of llvm-profdata tool when using clang as diff --git a/Tools/freeze/winmakemakefile.py b/Tools/freeze/winmakemakefile.py index 3843388c11..390d8ac144 100644 --- a/Tools/freeze/winmakemakefile.py +++ b/Tools/freeze/winmakemakefile.py @@ -144,5 +144,5 @@ def realwork(vars, moddefns, target): print("<<") print() print("clean:") - print("\t-rm -f *.obj") - print("\t-rm -f $(target).exe") + print("\t-del /f *.obj") + print("\t-del /f $(target).exe")