diff options
author | Marc Leeman <marc.leeman@gmail.com> | 2019-09-11 15:59:42 +0000 |
---|---|---|
committer | Mathieu Duponchelle <mduponchelle1@gmail.com> | 2019-09-11 15:59:42 +0000 |
commit | f4859ff73df9655517a36d0ef1e4fcd732307ace (patch) | |
tree | e3d327827432b4c01c3fc9debb714aa72240ea6b | |
parent | 06c249cabb41d5de6394569bfb545758fec07749 (diff) |
docs: do not require gst-plugins-doc-cache-generator
Do not require the cache generator. This is in line with the other
gstreamer modules
-rw-r--r-- | docs/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/meson.build b/docs/meson.build index da3f937..cc0ee51 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -14,7 +14,8 @@ if gst_dep.type_name() == 'internal' gst_proj = subproject('gstreamer') plugins_cache_generator = gst_proj.get_variable('plugins_cache_generator') else - plugins_cache_generator = find_program(join_paths(gst_dep.get_pkgconfig_variable('libexecdir'), 'gstreamer-' + api_version, 'gst-plugins-doc-cache-generator')) + plugins_cache_generator = find_program(join_paths(gst_dep.get_pkgconfig_variable('libexecdir'), 'gstreamer-' + api_version, 'gst-plugins-doc-cache-generator'), + required: false) endif plugins_cache = join_paths(meson.current_source_dir(), 'gst_plugins_cache.json') |