diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-09-05 22:59:17 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-09-05 22:59:17 (GMT) |
commit | cdeb24bb05359ec7550c327f44e8b1f346b9d776 (patch) | |
tree | e51bd45494ce4ac699dfab7c3e28f2a0f5930925 /Makefile.pre.in | |
parent | 187ac1bda4fdab0dba7df4a9362c48edf6b55ba4 (diff) | |
download | cpython-cdeb24bb05359ec7550c327f44e8b1f346b9d776.zip cpython-cdeb24bb05359ec7550c327f44e8b1f346b9d776.tar.gz cpython-cdeb24bb05359ec7550c327f44e8b1f346b9d776.tar.bz2 |
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.
Diffstat (limited to 'Makefile.pre.in')
-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 349b814..8451445 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1190,7 +1190,7 @@ funny: -o -print # Perform some verification checks on any modified files. -check: +patchcheck: $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py # Dependencies |