diff options
author | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2020-11-20 23:22:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-24 15:26:12 +0000 |
commit | ac0dc5850b572864389d27a31550c361bdaa7bcf (patch) | |
tree | 5d1cca2a34c073a99b32caec1a7b3cddab433d41 | |
parent | 101eec197821c1b3045c7e651d3e6bb37caa0fbb (diff) | |
download | poky-ac0dc5850b572864389d27a31550c361bdaa7bcf.tar.gz poky-ac0dc5850b572864389d27a31550c361bdaa7bcf.tar.bz2 poky-ac0dc5850b572864389d27a31550c361bdaa7bcf.zip |
bitbake: docs: 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)
(Bitbake rev: e0d08058d849cb28cd70ade0cb35863a91019353)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/doc/Makefile b/bitbake/doc/Makefile index 4d721d30f3..d40f390e2b 100644 --- a/bitbake/doc/Makefile +++ b/bitbake/doc/Makefile @@ -3,7 +3,7 @@ # You can set these variables from the command line, and also # from the environment for the first two. -SPHINXOPTS ?= +SPHINXOPTS ?= -j auto SPHINXBUILD ?= sphinx-build SOURCEDIR = . BUILDDIR = _build |