diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-02-21 18:24:03 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-02-25 09:06:40 -0500 |
commit | f3957b69fd1d691c0129d3dd3283169056d3c928 (patch) | |
tree | fd6d2d5270bcc2df0736987aea4c8e73782735c6 /doc | |
parent | 4eb0fc996c6f188221c278560052d4f58f1f6968 (diff) | |
download | u-boot-f3957b69fd1d691c0129d3dd3283169056d3c928.tar.gz |
doc/Makefile: turn warnings into errors
Several patches delivered incorrect restructured text as documentation. We
should be able to discover this in Travis CI, Gitlab CI, or Azure CI.
So let us turn all build warnings into errors.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile index 5135a96e88..0e0da5666f 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -56,6 +56,7 @@ quiet_cmd_sphinx = SPHINX $@ --> file://$(abspath $(BUILDDIR)/$3/$4) PYTHONDONTWRITEBYTECODE=1 \ BUILDDIR=$(abspath $(BUILDDIR)) SPHINX_CONF=$(abspath $(srctree)/$(src)/$5/$(SPHINX_CONF)) \ $(SPHINXBUILD) \ + -W \ -b $2 \ -c $(abspath $(srctree)/$(src)) \ -d $(abspath $(BUILDDIR)/.doctrees/$3) \ |