]> granicus.if.org Git - python/commitdiff
Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
authorSteve Dower <steve.dower@microsoft.com>
Sat, 10 Sep 2016 01:38:10 +0000 (18:38 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Sat, 10 Sep 2016 01:38:10 +0000 (18:38 -0700)
Misc/NEWS
Tools/freeze/winmakemakefile.py

index f6acbeacc2014e2beb2cbc7901c35d35db1899a6..e6820c9dd58362d27d1a973a57733d2ac4aaad62 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
index 1950d6badb849334cfbd8b503952dce73c0329e0..fce7ac6f12856fb27e7757e1a2828a0f304fcf97 100644 (file)
@@ -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"