From 69790004342edaa9bd22945f69bf671f3e69d6bc Mon Sep 17 00:00:00 2001 From: Vesek Date: Thu, 2 Jan 2025 22:31:41 +0100 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/85833 Tested-by: build bot (Jenkins) Reviewed-by: Nicholas Chin --- Documentation/Makefile.sphinx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Makefile.sphinx b/Documentation/Makefile.sphinx index c4984ece08..93e5dfbe41 100644 --- a/Documentation/Makefile.sphinx +++ b/Documentation/Makefile.sphinx @@ -21,7 +21,7 @@ livehtml: @echo "Starting sphinx-autobuild. The HTML pages are in $(BUILDDIR)." @echo "Press Ctrl-C to stop." @echo - $(SPHINXAUTOBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR) + $(SPHINXAUTOBUILD) "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).