diff options
author | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2020-11-20 09:17:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-20 14:32:25 +0000 |
commit | ba2e630546dc398c23e24e96412951e44326ddb4 (patch) | |
tree | 0af2d01cf0811dfeecf24d4ff9a6174371851b5c | |
parent | 4fcf21fb1d0b9cdd79abe9eb7e8d979d60800521 (diff) | |
download | poky-ba2e630546dc398c23e24e96412951e44326ddb4.tar.gz |
Makefile: enable parallel build
>From sphinx-build man page:
-j N build in parallel with N processes where possible
(special value "auto" will set N to cpu-count)
(From yocto-docs rev: 1847aeea8b88c84f821610803264955e51e31d2f)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index 4d721d30f3..d40f390e2b 100644 --- a/documentation/Makefile +++ b/documentation/Makefile | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | # You can set these variables from the command line, and also | 4 | # You can set these variables from the command line, and also |
5 | # from the environment for the first two. | 5 | # from the environment for the first two. |
6 | SPHINXOPTS ?= | 6 | SPHINXOPTS ?= -j auto |
7 | SPHINXBUILD ?= sphinx-build | 7 | SPHINXBUILD ?= sphinx-build |
8 | SOURCEDIR = . | 8 | SOURCEDIR = . |
9 | BUILDDIR = _build | 9 | BUILDDIR = _build |