diff options
author | Georg Brandl <georg@python.org> | 2010-10-06 10:47:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-06 10:47:20 (GMT) |
commit | 2471063dc711789193df572672763513b31ff974 (patch) | |
tree | 806506f7fc75963c78db79ffdd00e6f9847b1571 /Doc/Makefile | |
parent | 35e7a8fa53ccb1f4381b0489b4766c31ad982945 (diff) | |
download | cpython-2471063dc711789193df572672763513b31ff974.zip cpython-2471063dc711789193df572672763513b31ff974.tar.gz cpython-2471063dc711789193df572672763513b31ff974.tar.bz2 |
Merged revisions 85276 via svnmerge from
svn+ssh://pythondev@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 d48c991..f824eba 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 |