diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-09-05 23:01:27 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-09-05 23:01:27 (GMT) |
commit | a741ebf8a18b39e3b596707825f6e3026a5991fe (patch) | |
tree | d99f364fb1779d71e34f59cd9e1223082e710d3c | |
parent | b305aeb1dd1cd890dae539c63f406a3b803b84f7 (diff) | |
download | cpython-a741ebf8a18b39e3b596707825f6e3026a5991fe.zip cpython-a741ebf8a18b39e3b596707825f6e3026a5991fe.tar.gz cpython-a741ebf8a18b39e3b596707825f6e3026a5991fe.tar.bz2 |
Merged revisions 66237 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66237 | brett.cannon | 2008-09-05 15:59:17 -0700 (Fri, 05 Sep 2008) | 7 lines
GNU coding guidelines say that ``make check`` should verify the build. That
clashes with what Python's build target did. Rename the target to 'patchcheck'
to avoid the culture clash.
Closes issue 3758.
Reviewed by Benjamin Peterson.
........
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index cec8d3c..dee3fd0 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1191,7 +1191,7 @@ funny: -o -print # Perform some verification checks on any modified files. -check: +patchcheck: $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py # Dependencies |