From 20d541368afc29d30057ef56f64da6d022040ee0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Cerveau?= Date: Thu, 26 Nov 2020 17:37:01 +0100 Subject: [PATCH] opus: disable docs option in meson fallback As the docs are not necessary, no need to keep it enabled. Part-of: --- ext/opus/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opus/meson.build b/ext/opus/meson.build index 130c92d..cca4a3b 100644 --- a/ext/opus/meson.build +++ b/ext/opus/meson.build @@ -7,7 +7,7 @@ opus_sources = [ ] opus_dep = dependency('opus', version: '>= 0.9.4', required: get_option('opus'), - fallback: ['opus', 'opus_dep']) + fallback: ['opus', 'opus_dep'], default_options: ['docs=disabled']) if opus_dep.found() gstopus = library('gstopus', -- 2.7.4