From 951bd01fbe368c8d2885d6b547b76cbab8704d3f Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Mon, 18 Nov 2019 15:54:42 -0500 Subject: [PATCH] dash: Fix typo in meson.build --- ext/dash/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/dash/meson.build b/ext/dash/meson.build index a9bb550..a6f1b5d 100644 --- a/ext/dash/meson.build +++ b/ext/dash/meson.build @@ -11,7 +11,7 @@ xml2_dep = dependency('libxml-2.0', ) if xml2_dep.found() - gstsouphttpsrc = library('gstdashdemux', + gstdashdemux = library('gstdashdemux', dash_sources, c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'], link_args : noseh_link_args, @@ -21,6 +21,6 @@ if xml2_dep.found() install : true, install_dir : plugins_install_dir, ) - pkgconfig.generate(gstsouphttpsrc, install_dir : plugins_pkgconfig_install_dir) - plugins += [gstsouphttpsrc] + pkgconfig.generate(gstdashdemux, install_dir : plugins_pkgconfig_install_dir) + plugins += [gstdashdemux] endif -- 2.7.4