summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2019-06-28 13:16:12 +0300
committerMarius Vlad <marius.vlad@collabora.com>2019-06-28 13:39:11 +0300
commit5d7877adfd31956bdad98da4a937059260da1f69 (patch)
treed6290bc0ed0749a2d3db3cfa5b43eb008959d1b6
parent6d9fda715609f36d6f8550503a417804b0062243 (diff)
downloadweston-5d7877adfd31956bdad98da4a937059260da1f69.tar.gz
doc/sphinx: Force sphinx to re-build everything as to avoid stale docs
With the introduction of the 'docs' target we make sure that we always build the documentation, but currently breathe is unaware of the fact that the doxygen XML database was changed in between runs. It is obvious when changing only source code not rST bits. This patch makes sphinx ignore the saved environment and always rebuild the docs. Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
-rwxr-xr-xdoc/sphinx/run_doxygen_sphinx.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/sphinx/run_doxygen_sphinx.sh.in b/doc/sphinx/run_doxygen_sphinx.sh.in
index 226a42f6..371a7b38 100755
--- a/doc/sphinx/run_doxygen_sphinx.sh.in
+++ b/doc/sphinx/run_doxygen_sphinx.sh.in
@@ -1,2 +1,2 @@
#!/bin/sh
-@DOXYGEN_CMD@ @DOXYGEN_CONF@ && @SPHINX_CMD@ -W -q -j auto @SRCDIR@ @OUTDIR@
+@DOXYGEN_CMD@ @DOXYGEN_CONF@ && @SPHINX_CMD@ -E -W -q -j auto @SRCDIR@ @OUTDIR@