From 80d0c87877bc83f265dcae14d46fb6519686ec91 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 14 Sep 2022 10:19:27 -0700 Subject: gtk+3: Fix logical error in removing x11 Last commit had a thinko, where it should be removing x11 only if x11 is not in distro features, but it ended up doing that for wayland Signed-off-by: Khem Raj (cherry picked from commit 7447f7c8784883589195a83e27f8cb0ad430e88e) --- recipes-graphics/gtk+/gtk+3_%.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-graphics/gtk+/gtk+3_%.bbappend b/recipes-graphics/gtk+/gtk+3_%.bbappend index fe88c0ad2..c4fdfff97 100644 --- a/recipes-graphics/gtk+/gtk+3_%.bbappend +++ b/recipes-graphics/gtk+/gtk+3_%.bbappend @@ -1,6 +1,6 @@ DEPENDS:append:imxgpu2d = " virtual/egl" -WAYLAND = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', 'wayland', d)}" +WAYLAND = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', 'x11', d)}" WAYLANDONLY = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '${WAYLAND}', '', d)}" PACKAGECONFIG:remove:imxgpu2d = " ${WAYLANDONLY}" -- cgit v1.2.3-54-g00ecf