From 19be4a054681a4fbf8416e87e4c78665dd2727cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 19 Dec 2017 16:09:41 +0000 Subject: [PATCH] meson: gl: the winsys and platform list in the .pc file is space-separated --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index e1f14b15bf..8e71c46192 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']