From bf58b597d26de968bfba07ef3de8548fa0d62f04 Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Mon, 26 Jul 2021 17:34:46 +0200 Subject: 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 Signed-off-by: Quentin Schulz Signed-off-by: Richard Purdie --- bitbake/doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ # You can set these variables from the command line, and also # from the environment for the first two. -SPHINXOPTS ?= -j auto +SPHINXOPTS ?= -W --keep-going -j auto SPHINXBUILD ?= sphinx-build SOURCEDIR = . BUILDDIR = _build -- cgit v1.2.3-54-g00ecf