summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2020-12-03 17:13:15 +0100
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-12-03 16:29:59 +0000
commitcc44634422bf0633f5e57a6b15534ce639427440 (patch)
treed9d882a61de74a08ed72c0cf8e73590705a0d324 /docs
parentd137171f03613d3eeaf7d0ced9a2ca38da6c0047 (diff)
downloadgstreamer-plugins-bad-cc44634422bf0633f5e57a6b15534ce639427440.tar.gz
docs: don't exit the subdir when optional deps aren't found
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1854>
Diffstat (limited to 'docs')
-rw-r--r--docs/meson.build4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/meson.build b/docs/meson.build
index 3a91edbd7..929baa655 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -14,7 +14,6 @@ if gst_dep.type_name() == 'internal'
gst_proj = subproject('gstreamer')
plugins_cache_generator = gst_proj.get_variable('plugins_cache_generator')
else
- required_hotdoc_extensions += ['gst-extension']
plugins_cache_generator = find_program(join_paths(gst_dep.get_pkgconfig_variable('libexecdir'), 'gstreamer-' + api_version, 'gst-plugins-doc-cache-generator'),
required: false)
endif
@@ -59,7 +58,6 @@ foreach extension: required_hotdoc_extensions
endif
message('@0@ extensions not found, not building documentation requiring it'.format(extension))
- subdir_done()
endif
endforeach
@@ -68,7 +66,7 @@ if not build_gir
error('Documentation enabled but introspection not built.')
endif
- message('Introspection not built, can\'t build the documentation')
+ message('Introspection not built, won\'t build documentation requiring it')
subdir_done()
endif