diff options
author | Quentin Schulz <foss@0leil.net> | 2021-05-27 20:31:50 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-06-14 22:45:33 +0100 |
commit | c2a68819d02b336b5f9c775946f2ab846c0d231c (patch) | |
tree | d400758e3ef538fd56af04ad00d4cdceeecace1a /documentation/Makefile | |
parent | 1a1941cc489190b8d4d604cdddb8d3e355990709 (diff) | |
download | poky-c2a68819d02b336b5f9c775946f2ab846c0d231c.tar.gz |
documentation: 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!
(From yocto-docs rev: 5d7b8547549b2203a03df617cdba70ccf2194c62)
Signed-off-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/Makefile')
-rw-r--r-- | documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index d40f390e2b..996f01b7d5 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 ?= -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 |