diff options
author | Georg Brandl <georg@python.org> | 2014-09-30 20:56:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-30 20:56:38 (GMT) |
commit | 61bd1dcf9bde6e64408392765d649c057a8fc81b (patch) | |
tree | 5947147361e896938f105eaebe90e0300ebb8345 /Doc/Makefile | |
parent | c8da4287a774fe8f26d6c47c501cf17a365ab922 (diff) | |
download | cpython-61bd1dcf9bde6e64408392765d649c057a8fc81b.zip cpython-61bd1dcf9bde6e64408392765d649c057a8fc81b.tar.gz cpython-61bd1dcf9bde6e64408392765d649c057a8fc81b.tar.bz2 |
Move Doc/tools/sphinxext content to Doc/tools, there is no need for the nested subdirectory anymore.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index fee7fc7..5b5f68a 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -8,7 +8,7 @@ PYTHON = python SPHINXBUILD = sphinx-build PAPER = SOURCES = -DISTVERSION = $(shell $(PYTHON) tools/sphinxext/patchlevel.py) +DISTVERSION = $(shell $(PYTHON) tools/patchlevel.py) ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \ $(SPHINXOPTS) . build/$(BUILDER) $(SOURCES) @@ -79,7 +79,7 @@ suspicious: @$(MAKE) build BUILDER=$(BUILDER) || { \ 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."; \ + "positives, append that file to tools/susp-ignored.csv."; \ false; } coverage: BUILDER = coverage |