dash: Fix typo in meson.build
authorXavier Claessens <xavier.claessens@collabora.com>
Mon, 18 Nov 2019 20:54:42 +0000 (15:54 -0500)
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Tue, 19 Nov 2019 14:49:56 +0000 (14:49 +0000)
ext/dash/meson.build

index a9bb550..a6f1b5d 100644 (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