summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2015-03-16 15:30:31 +1300
committerRobert Collins <rbtcollins@hp.com>2015-03-16 15:30:31 +1300
commit1fc906ec3bf8b1f03f12b43730e3ca75325fdca2 (patch)
tree6c7b940125b4301e4a24b46258ea14826e7e61b2
parent64ce6582465c43943b56c7e38e63b085ccc829ab (diff)
downloadcpython-1fc906ec3bf8b1f03f12b43730e3ca75325fdca2.tar.gz
Issue #23585: make patchcheck will ensure the interpreter is built.
-rw-r--r--Makefile.pre.in2
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index d9ee777085..f2eb92a66c 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1622,7 +1622,7 @@ funny:
-o -print
# Perform some verification checks on any modified files.
-patchcheck:
+patchcheck: all
$(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
# Dependencies
diff --git a/Misc/NEWS b/Misc/NEWS
index 13c4b3edff..d3d4d8f612 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,10 @@ Library
The usage of os.scandir() reduces the number of calls to os.stat().
Initial patch written by Ben Hoyt.
+Build
+-----
+
+- Issue #23585: make patchcheck will ensure the interpreter is built.
What's New in Python 3.5 alpha 2?
=================================