diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-09-10 01:38:10 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-09-10 01:38:10 (GMT) |
commit | d6004b4b3ba46a59093887e55b2df5722b2f6c36 (patch) | |
tree | 77dc62289f1d3dcaeb5c358c3bcbf9134a73c1d5 | |
parent | 13b56efa81d9decb8bac25f66c3a6d2a196e25ac (diff) | |
download | cpython-d6004b4b3ba46a59093887e55b2df5722b2f6c36.zip cpython-d6004b4b3ba46a59093887e55b2df5722b2f6c36.tar.gz cpython-d6004b4b3ba46a59093887e55b2df5722b2f6c36.tar.bz2 |
Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Tools/freeze/winmakemakefile.py | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -170,6 +170,8 @@ Tests 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 --git a/Tools/freeze/winmakemakefile.py b/Tools/freeze/winmakemakefile.py index 1950d6b..fce7ac6 100644 --- a/Tools/freeze/winmakemakefile.py +++ b/Tools/freeze/winmakemakefile.py @@ -143,5 +143,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" |