From 9f5703c36699e3891915d3fb1f36bbe1bbe5f5be Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Thu, 19 Oct 2023 03:22:57 +0530 Subject: [PATCH] meson: Fix typo building_full_options Part-of: --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index ae5878ae4f..940929a5ca 100644 --- a/meson.build +++ b/meson.build @@ -86,14 +86,14 @@ endif building_full = get_option('default_library') == 'static' building_full_static = get_option('gst-full-target-type') == 'static_library' -buildind_full_options = [] +building_full_options = [] if building_full -buildind_full_options = ['gstreamer-full=enabled'] +building_full_options = ['gstreamer-full=enabled'] endif # Ordered list of subprojects (dict has no ordering guarantees) subprojects = [ - ['gstreamer', {'build-hotdoc': true, 'subproject_options': buildind_full_options}], + ['gstreamer', {'build-hotdoc': true, 'subproject_options': building_full_options}], ['gst-plugins-base', {'option': get_option('base'), 'build-hotdoc': true}], ['gst-plugins-good', {'option': get_option('good'), 'build-hotdoc': true}], ['libnice', { 'option': get_option('libnice'), 'match_gst_version': false}],