From a741ebf8a18b39e3b596707825f6e3026a5991fe Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 5 Sep 2008 23:01:27 +0000 Subject: [PATCH] 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. ........ --- Makefile.pre.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index cec8d3c1a2..dee3fd0593 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 -- 2.50.1