Skip to content

Commit cedb4d6

Browse files
[3.15] gh-139588: Fix nondeterministic make latex doc build under parallel make (GH-151343) (#151352)
(cherry picked from commit b9bffc0) Co-authored-by: Maciej Olko <maciej.olko@affirm.com>
1 parent 0d4d4cd commit cedb4d6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ htmlhelp: build
8888
"build/htmlhelp/pydoc.hhp project file."
8989

9090
.PHONY: latex
91-
latex: _ensure-sphinxcontrib-svg2pdfconverter
9291
latex: BUILDER = latex
93-
latex: build
92+
latex: _ensure-sphinxcontrib-svg2pdfconverter
93+
$(MAKE) build BUILDER=$(BUILDER)
9494
@echo "Build finished; the LaTeX files are in build/latex."
9595
@echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
9696
"run these through (pdf)latex."

0 commit comments

Comments
 (0)