Discussion:
[Python-3000-checkins] r66238 - in python/branches/py3k: Makefile.pre.in
brett.cannon
2008-09-05 23:01:28 UTC
Permalink
Author: brett.cannon
Date: Sat Sep 6 01:01:27 2008
New Revision: 66238

Log:
Merged revisions 66237 via svnmerge from
svn+ssh://pythondev at 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.
........


Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Makefile.pre.in

Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in (original)
+++ python/branches/py3k/Makefile.pre.in Sat Sep 6 01:01:27 2008
@@ -1191,7 +1191,7 @@
-o -print

# Perform some verification checks on any modified files.
-check:
+patchcheck:
$(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py

# Dependencies

Loading...