dash: Fix typo in meson.build

This commit is contained in:
Xavier Claessens 2019-11-18 15:54:42 -05:00 committed by GStreamer Merge Bot
parent 484a272306
commit 951bd01fbe

View file

@ -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