]> 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:20 +0000 (18:38 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Sat, 10 Sep 2016 01:38:20 +0000 (18:38 -0700)
Misc/NEWS
Tools/freeze/winmakemakefile.py

index 79717c38f8bd7bba30b585d06aecd836cda7f2b4..443609ab9df73b950199b2df9b9ef9bfb06e3317 100644 (file)
--- 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
index 3843388c119c4eef67aa237d4ea4179439b4eb07..390d8ac1449418ff0994e52e2761d3ee8f8eb1a0 100644 (file)
@@ -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")