Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
052828db
Commit
052828db
authored
Sep 09, 2016
by
Steve Dower
Browse files
Options
Browse Files
Download
Plain Diff
Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
parents
80da9938
528db31b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
Misc/NEWS
Misc/NEWS
+2
-0
Tools/freeze/winmakemakefile.py
Tools/freeze/winmakemakefile.py
+2
-2
No files found.
Misc/NEWS
View file @
052828db
...
@@ -328,6 +328,8 @@ Tests
...
@@ -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
...
...
Tools/freeze/winmakemakefile.py
View file @
052828db
...
@@ -144,5 +144,5 @@ def realwork(vars, moddefns, target):
...
@@ -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"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment