mirror of https://github.com/python/cpython
Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
This commit is contained in:
commit
052828db15
|
@ -328,6 +328,8 @@ Tests
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
|
||||||
|
|
||||||
- Issue #27705: Update message in validate_ucrtbase.py
|
- Issue #27705: Update message in validate_ucrtbase.py
|
||||||
|
|
||||||
- Issue #27976: Deprecate building _ctypes with the bundled copy of libffi on
|
- Issue #27976: Deprecate building _ctypes with the bundled copy of libffi on
|
||||||
|
|
|
@ -144,5 +144,5 @@ def realwork(vars, moddefns, target):
|
||||||
print("<<")
|
print("<<")
|
||||||
print()
|
print()
|
||||||
print("clean:")
|
print("clean:")
|
||||||
print("\t-rm -f *.obj")
|
print("\t-del /f *.obj")
|
||||||
print("\t-rm -f $(target).exe")
|
print("\t-del /f $(target).exe")
|
||||||
|
|
Loading…
Reference in New Issue