diff options
author | Georg Brandl <georg@python.org> | 2010-10-06 10:35:24 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-06 10:35:24 (GMT) |
commit | 19b3e00627d162f338cd2d1fc0b51ab3f352d38a (patch) | |
tree | f663ff7a33710ce527c9dbc227284568ea7f5664 /Doc/Makefile | |
parent | 682d7e0e07bc29de4578f48be66756c5b969776f (diff) | |
download | cpython-19b3e00627d162f338cd2d1fc0b51ab3f352d38a.zip cpython-19b3e00627d162f338cd2d1fc0b51ab3f352d38a.tar.gz cpython-19b3e00627d162f338cd2d1fc0b51ab3f352d38a.tar.bz2 |
Fix the suspicious builder not to write CRLF, update suspicious file and add instructions to Makefile.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index d12e4c7..c9314fb 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -87,13 +87,14 @@ changes: build linkcheck: BUILDER = linkcheck linkcheck: build - @echo "Link check complete; look for any errors in the above output " \ + @echo "Link check complete; look for any errors in the above output" \ "or in build/$(BUILDER)/output.txt" suspicious: BUILDER = suspicious suspicious: build - @echo "Suspicious check complete; look for any errors in the above output " \ - "or in build/$(BUILDER)/suspicious.txt" + @echo "Suspicious check complete; look for any errors in the above output" \ + "or in build/$(BUILDER)/suspicious.csv. If all issues are false" \ + "positives, append that file to tools/sphinxext/susp-ignored.csv." coverage: BUILDER = coverage coverage: build @@ -101,12 +102,12 @@ coverage: build doctest: BUILDER = doctest doctest: build - @echo "Testing of doctests in the sources finished, look at the " \ + @echo "Testing of doctests in the sources finished, look at the" \ "results in build/doctest/output.txt" pydoc-topics: BUILDER = pydoc-topics pydoc-topics: build - @echo "Building finished; now copy build/pydoc-topics/topics.py " \ + @echo "Building finished; now copy build/pydoc-topics/topics.py" \ "to Lib/pydoc_data/topics.py" htmlview: html |