summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2020-11-20 23:22:26 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-11-24 15:26:12 +0000
commitac0dc5850b572864389d27a31550c361bdaa7bcf (patch)
tree5d1cca2a34c073a99b32caec1a7b3cddab433d41
parent101eec197821c1b3045c7e651d3e6bb37caa0fbb (diff)
downloadpoky-ac0dc5850b572864389d27a31550c361bdaa7bcf.tar.gz
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/Makefile2
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 @@
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.
6SPHINXOPTS ?= 6SPHINXOPTS ?= -j auto
7SPHINXBUILD ?= sphinx-build 7SPHINXBUILD ?= sphinx-build
8SOURCEDIR = . 8SOURCEDIR = .
9BUILDDIR = _build 9BUILDDIR = _build