changeset: 103529:3ffff303df95 branch: 3.5 parent: 103523:7f7a994bbfbc user: Steve Dower date: Fri Sep 09 18:38:20 2016 -0700 files: Misc/NEWS Tools/freeze/winmakemakefile.py description: Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) diff -r 7f7a994bbfbc -r 3ffff303df95 Misc/NEWS --- a/Misc/NEWS Fri Sep 09 18:21:15 2016 -0700 +++ b/Misc/NEWS Fri Sep 09 18:38:20 2016 -0700 @@ -301,6 +301,8 @@ 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 -r 7f7a994bbfbc -r 3ffff303df95 Tools/freeze/winmakemakefile.py --- a/Tools/freeze/winmakemakefile.py Fri Sep 09 18:21:15 2016 -0700 +++ b/Tools/freeze/winmakemakefile.py Fri Sep 09 18:38:20 2016 -0700 @@ -144,5 +144,5 @@ 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")