While each target is set to be ignored if the docs are disabled in the meson build, there is little reason to process the docs folder at all.
Signed-off-by: Bruce Richardson <[email protected]> Acked-by: Aaron Conole <[email protected]> Acked-by: Luca Boccassi <[email protected]> --- doc/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/meson.build b/doc/meson.build index c5410d85d..c49ec8476 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -1,6 +1,10 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Luca Boccassi <[email protected]> +if not get_option('enable_docs') + subdir_done() +endif + doc_targets = [] doc_target_names = [] subdir('api') -- 2.24.1

