From 56eb44c50211983b22d7b0c231d99d27f76a971e Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 7 Oct 2022 07:56:21 -0400 Subject: [PATCH] Meson: Fix libxml2 fallback The variable xml2lib_dep does not exist. The correct name is already in the wrap file. Part-of: --- subprojects/gst-plugins-bad/ext/dash/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/ext/dash/meson.build b/subprojects/gst-plugins-bad/ext/dash/meson.build index 4df0cd7196..dbaf99e5e5 100644 --- a/subprojects/gst-plugins-bad/ext/dash/meson.build +++ b/subprojects/gst-plugins-bad/ext/dash/meson.build @@ -35,7 +35,7 @@ dash_sources = [ xml2_dep = dependency('libxml-2.0', version : '>= 2.8', - fallback : ['libxml2', 'xml2lib_dep'], + fallback : 'libxml2', required : get_option('dash') )