diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-12-19 16:09:41 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-12-19 16:09:41 +0000 |
commit | 19be4a054681a4fbf8416e87e4c78665dd2727cc (patch) | |
tree | eae799843103c9902be03d654616d80f43f8d680 | |
parent | 93540dac16798a3ba9e7d7f6a6cba4e38841b1ea (diff) | |
download | gst-omx-19be4a054681a4fbf8416e87e4c78665dd2727cc.tar.gz |
meson: gl: the winsys and platform list in the .pc file is space-separated
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index e1f14b1..8e71c46 100644 --- a/meson.build +++ b/meson.build @@ -183,8 +183,8 @@ elif omx_target == 'rpi' if gstgl_dep.found() if gstgl_dep.type_name() == 'pkgconfig' - gl_winsys = gstgl_dep.get_pkgconfig_variable('gl_winsys').split(',') - gl_platforms = gstgl_dep.get_pkgconfig_variable('gl_platforms').split(',') + gl_winsys = gstgl_dep.get_pkgconfig_variable('gl_winsys').split(' ') + gl_platforms = gstgl_dep.get_pkgconfig_variable('gl_platforms').split(' ') elif gstgl_dep.type_name() == 'internal' # XXX assume gst-plugins-base was built with dispmanx and egl support gl_winsys = ['dispmanx'] |