[Python-checkins] cpython: Issue #23585: make patchcheck will ensure the interpreter is built.

robert.collins python-checkins at python.org
Mon Mar 16 03:30:43 CET 2015


https://hg.python.org/cpython/rev/de093a1ec51b
changeset:   95003:de093a1ec51b
user:        Robert Collins <rbtcollins at hp.com>
date:        Mon Mar 16 15:30:31 2015 +1300
summary:
  Issue #23585: make patchcheck will ensure the interpreter is built.

files:
  Makefile.pre.in |  2 +-
  Misc/NEWS       |  4 ++++
  2 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1622,7 +1622,7 @@
 		-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
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,10 @@
   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?
 =================================

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list