Commit 528db31b authored by Steve Dower's avatar Steve Dower

Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)

parent f2bdb6b8
......@@ -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
......
......@@ -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")
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment