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-23 19:33:28 +0000 |
commit | e0d08058d849cb28cd70ade0cb35863a91019353 (patch) | |
tree | 3e92761ff5b5a6710f5ca10f7bf96765f79365d1 /doc/Makefile | |
parent | 78cd63285713fde59506eb2e71a7b7ee59a594ff (diff) | |
download | bitbake-e0d08058d849cb28cd70ade0cb35863a91019353.tar.gz |
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)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index 4d721d30..d40f390e 100644 --- a/doc/Makefile +++ b/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 |