changeset: 103528:e96eb2bd0d5e branch: 2.7 parent: 103526:af4529e3594d user: Steve Dower date: Fri Sep 09 18:38:10 2016 -0700 files: Misc/NEWS Tools/freeze/winmakemakefile.py description: Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) diff -r af4529e3594d -r e96eb2bd0d5e Misc/NEWS --- a/Misc/NEWS Fri Sep 09 18:33:32 2016 -0700 +++ b/Misc/NEWS Fri Sep 09 18:38:10 2016 -0700 @@ -170,6 +170,8 @@ Build ----- +- Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) + - Issue #27983: Cause lack of llvm-profdata tool when using clang as required for PGO linking to be a configure time error rather than make time when --with-optimizations is enabled. Also improve our diff -r af4529e3594d -r e96eb2bd0d5e Tools/freeze/winmakemakefile.py --- a/Tools/freeze/winmakemakefile.py Fri Sep 09 18:33:32 2016 -0700 +++ b/Tools/freeze/winmakemakefile.py Fri Sep 09 18:38:10 2016 -0700 @@ -143,5 +143,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"