diff options
author | Quentin Schulz <quentin.schulz@theobroma-systems.com> | 2021-07-26 17:34:46 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-26 22:34:13 +0100 |
commit | bf58b597d26de968bfba07ef3de8548fa0d62f04 (patch) | |
tree | 14e140c62c4d8aeb58f1de644c74d3b9557e96a0 | |
parent | d49e7dde842de0840cc445282d2017451278a604 (diff) | |
download | poky-bf58b597d26de968bfba07ef3de8548fa0d62f04.tar.gz |
bitbake: doc: Makefile: turn warnings into errors by default
-W is for turning warnings into errors, --keep-going to make sure the
whole documentation is built and all warnings will be printed before
failing.
Since there's currently no warning, it's time to introduce it!
(Bitbake rev: 6b0b3d707f662ca7b1d0de99fe032e4f35867d10)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Quentin Schulz <foss@0leil.net>
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 d40f390e2b..996f01b7d5 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. |
6 | SPHINXOPTS ?= -j auto | 6 | SPHINXOPTS ?= -W --keep-going -j auto |
7 | SPHINXBUILD ?= sphinx-build | 7 | SPHINXBUILD ?= sphinx-build |
8 | SOURCEDIR = . | 8 | SOURCEDIR = . |
9 | BUILDDIR = _build | 9 | BUILDDIR = _build |