File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ OUTPUT_DOCTREE := $(CPYTHON_WORKDIR)/Doc/build/doctree
2020OUTPUT_HTML := $(CPYTHON_WORKDIR ) /Doc/build/html
2121LOCALE_DIR := $(CPYTHON_WORKDIR ) /locale
2222POSPELL_TMP_DIR := .pospell
23+ SPHINX_JOBS := auto
2324
2425
2526.PHONY : help
@@ -43,7 +44,7 @@ build: setup fix_relative_paths do_build
4344.PHONY : do_build
4445do_build :
4546 # Normal build
46- PYTHONWARNINGS=ignore::FutureWarning,ignore::RuntimeWarning $(VENV ) /bin/sphinx-build -j auto -W --keep-going -b html -d $(OUTPUT_DOCTREE ) -D language=$(LANGUAGE ) . $(OUTPUT_HTML ) && \
47+ PYTHONWARNINGS=ignore::FutureWarning,ignore::RuntimeWarning $(VENV ) /bin/sphinx-build -j $( SPHINX_JOBS ) -W --keep-going -b html -d $(OUTPUT_DOCTREE ) -D language=$(LANGUAGE ) . $(OUTPUT_HTML ) && \
4748 echo " Success! Open file://` pwd` /$( OUTPUT_HTML) /index.html, " \
4849 " or run 'make serve' to see them in http://localhost:8000" ;
4950
You can’t perform that action at this time.
0 commit comments