From b42da3b975d6325d1226b6854c793578cd78b806 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Tue, 16 Sep 2025 17:59:06 +0300 Subject: [PATCH] Documentation: Add api-html/ and internal-api-html/ to docs sources MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The api-html/index.rst and internal-api-html/index.rst files are missing from docs_sources. Changes to those files therefore don't trigger a documentation rebuild. Fix it. Signed-off-by: Laurent Pinchart Reviewed-by: Stefan Klug Reviewed-by: Barnabás Pőcze --- Documentation/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/meson.build b/Documentation/meson.build index f7340743..8cf77759 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -150,6 +150,7 @@ if sphinx.found() sphinx_conf_dir = fs.parent(sphinx_conf) docs_sources = [ + 'api-html/index.rst', 'camera-sensor-model.rst', 'code-of-conduct.rst', 'coding-style.rst', @@ -164,6 +165,7 @@ if sphinx.found() 'guides/pipeline-handler.rst', 'guides/tracing.rst', 'index.rst', + 'internal-api-html/index.rst', 'introduction.rst', 'lens_driver_requirements.rst', 'libcamera_architecture.rst',