From c0c4e30e12290c9aa05dc6451e34ce891b0116ce Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 29 Sep 2022 10:13:10 -0700 Subject: weston: Fix the append logic Previous commit did not really work because we are using bb.utils.filter and that removed the artificial space sadly. Therefore add it outside this function call. Signed-off-by: Khem Raj (cherry picked from commit e3c2e0644a4593ae35270a890e1e3692f234545e) --- recipes-graphics/wayland/weston_10.0.0.imx.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-graphics/wayland/weston_10.0.0.imx.bb b/recipes-graphics/wayland/weston_10.0.0.imx.bb index 1e380ffee..7ab612b03 100644 --- a/recipes-graphics/wayland/weston_10.0.0.imx.bb +++ b/recipes-graphics/wayland/weston_10.0.0.imx.bb @@ -177,7 +177,7 @@ PACKAGECONFIG_OPENGL:imxgpu2d = "" PACKAGECONFIG_OPENGL:imxgpu3d = "opengl" PACKAGECONFIG:remove = "wayland x11" -PACKAGECONFIG:append = "${@bb.utils.filter('DISTRO_FEATURES', ' ${PACKAGECONFIG_OPENGL}', d)}" +PACKAGECONFIG:append = " ${@bb.utils.filter('DISTRO_FEATURES', '${PACKAGECONFIG_OPENGL}', d)}" PACKAGECONFIG:remove:imxfbdev = "kms" PACKAGECONFIG:append:imxfbdev = " fbdev clients" -- cgit v1.2.3-54-g00ecf