bpo-34293: Fix PDF documentation paper size (GH-8585)
The "A4" pdfs were previously the wrong size due to a change in the options in Sphinx 1.5. See also sphinx-doc/sphinx#5235
This commit is contained in:
parent
55d12ce8b8
commit
b5381f6697
|
@ -13,7 +13,11 @@ SOURCES =
|
|||
DISTVERSION = $(shell $(PYTHON) tools/extensions/patchlevel.py)
|
||||
SPHINXERRORHANDLING = -W
|
||||
|
||||
ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_elements.papersize=$(PAPER) \
|
||||
# Internal variables.
|
||||
PAPEROPT_a4 = -D latex_elements.papersize=a4paper
|
||||
PAPEROPT_letter = -D latex_elements.papersize=letterpaper
|
||||
|
||||
ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees $(PAPEROPT_$(PAPER)) \
|
||||
$(SPHINXOPTS) $(SPHINXERRORHANDLING) . build/$(BUILDER) $(SOURCES)
|
||||
|
||||
.PHONY: help build html htmlhelp latex text changes linkcheck \
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Fix the Doc/Makefile regarding PAPER environment variable and PDF builds
|
Loading…
Reference in New Issue