diff options
author | Georg Brandl <georg@python.org> | 2010-10-06 10:43:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-06 10:43:34 (GMT) |
commit | e5e6bc68f9c9aa127ea7ae390b1a0a7005b5d805 (patch) | |
tree | e6f4cf9315e167f1402284eea981a1fd7ffff061 /Doc/Makefile | |
parent | d098c3d94cd9bc74fa4d6f3a2752965e12860a03 (diff) | |
download | cpython-e5e6bc68f9c9aa127ea7ae390b1a0a7005b5d805.zip cpython-e5e6bc68f9c9aa127ea7ae390b1a0a7005b5d805.tar.gz cpython-e5e6bc68f9c9aa127ea7ae390b1a0a7005b5d805.tar.bz2 |
Merged revisions 85276 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
r85276 | georg.brandl | 2010-10-06 12:35:24 +0200 (Mi, 06 Okt 2010) | 1 line
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 5c39d8b..8fcf538 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -86,13 +86,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 @@ -100,12 +101,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 |