diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2017-03-29 23:36:50 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2017-03-29 23:37:59 -0400 |
commit | 99ff04447fb05671943655f42cc91f24e30f658e (patch) | |
tree | ab75f37d674f2d9097ae81e78b34b916adcd7c6b /ext/mplex | |
parent | da44fea1d170160efacaf0b87042d4228ef90c03 (diff) |
meson: Fix mplex plugin file name
Meson was creating libgstmplex2.so which didn't match the plugin name
'mplex'.
Diffstat (limited to 'ext/mplex')
-rw-r--r-- | ext/mplex/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mplex/meson.build b/ext/mplex/meson.build index e2a6d0783..d1a0ade95 100644 --- a/ext/mplex/meson.build +++ b/ext/mplex/meson.build @@ -2,7 +2,7 @@ if mjpegtools_dep.found() mplex2_dep = cxx.find_library('mplex2', required : false) if mplex2_dep.found() - gstmplex2 = library('gstmplex2', + gstmplex2 = library('gstmplex', 'gstmplex.cc', 'gstmplexibitstream.cc', 'gstmplexjob.cc', |