Václav Straka has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85833?usp=email )
Change subject: Documentation: Fix make rule for sphinx-autobuild ......................................................................
Documentation: Fix make rule for sphinx-autobuild
Add source directory to arguments of sphinx-autobuild
Tested in docker and natively
Change-Id: I3d3b0547acd7b070925d9bee818ee1ef230f5f46 Signed-off-by: Vesek venda.straka@gmail.com --- M Documentation/Makefile.sphinx 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/33/85833/1
diff --git a/Documentation/Makefile.sphinx b/Documentation/Makefile.sphinx index c4984ec..164f90e 100644 --- a/Documentation/Makefile.sphinx +++ b/Documentation/Makefile.sphinx @@ -21,7 +21,7 @@ @echo "Starting sphinx-autobuild. The HTML pages are in $(BUILDDIR)." @echo "Press Ctrl-C to stop." @echo - $(SPHINXAUTOBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR) + $(SPHINXAUTOBUILD) -b html "$(SOURCEDIR)" $(ALLSPHINXOPTS) $(BUILDDIR)
# Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).