8000 Add JOBS parameter to docs Makefile by christopheNan · Pull Request #101395 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Add JOBS parameter to docs Makefile #101395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 31, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
move the JOBS var to its alphabetical order place
  • Loading branch information
christopheNan committed Jan 30, 2023
commit cd406bdcec7fdef2657a4f4d9dd725bd116fa3e9
2 changes: 1 addition & 1 deletion Doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ VENVDIR = ./venv
SPHINXBUILD = PATH=$(VENVDIR)/bin:$$PATH sphinx-build
SPHINXLINT = PATH=$(VENVDIR)/bin:$$PATH sphinx-lint
BLURB = PATH=$(VENVDIR)/bin:$$PATH blurb
JOBS = auto
PAPER =
SOURCES =
DISTVERSION = $(shell $(PYTHON) tools/extensions/patchlevel.py)
SPHINXERRORHANDLING = -W
JOBS = auto

# Internal variables.
PAPEROPT_a4 = -D latex_elements.papersize=a4paper
Expand Down
0