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
20
20
OUTPUT_HTML := $(CPYTHON_WORKDIR ) /Doc/build/html
21
21
LOCALE_DIR := $(CPYTHON_WORKDIR ) /locale
22
22
POSPELL_TMP_DIR := .pospell
23
+ SPHINX_JOBS := auto
23
24
24
25
25
26
.PHONY : help
@@ -43,7 +44,7 @@ build: setup fix_relative_paths do_build
43
44
.PHONY : do_build
44
45
do_build :
45
46
# 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 ) && \
47
48
echo " Success! Open file://` pwd` /$( OUTPUT_HTML) /index.html, " \
48
49
" or run 'make serve' to see them in http://localhost:8000" ;
49
50
You can’t perform that action at this time.
0 commit comments