summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2025-09-03 14:25:02 +0800
committerKhem Raj <raj.khem@gmail.com>2025-09-04 10:28:21 -0700
commitb00af83239fd37b858eff6861bf1ee74c5e82982 (patch)
tree325a95a5641917750a661be7cba0d8b5f277d95e
parent2de2663b8aa901d3f2bdc182e29605c2f814107b (diff)
downloadmeta-openembedded-b00af83239fd37b858eff6861bf1ee74c5e82982.tar.gz
libpanel: require distro feature opengl
Make libpanel require distro feature opengl. Otherwise it fails to build world if 'opengl' doesn't exist in DISTRO_FEATURES. ... |ERROR: Nothing PROVIDES 'libadwaita' (but meta-openembedded/meta-gnome/recipes-gnome/libpanel/ libpanel_1.10.0.bb DEPENDS on or otherwise requires it) |libadwaita was skipped: missing required distro feature 'opengl' (not in DISTRO_FEATURES) |ERROR: Required build target 'meta-world-pkgdata' has no buildable providers. |Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'libpanel', 'libadwaita'] ... Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-gnome/recipes-gnome/libpanel/libpanel_1.10.0.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-gnome/recipes-gnome/libpanel/libpanel_1.10.0.bb b/meta-gnome/recipes-gnome/libpanel/libpanel_1.10.0.bb
index da47288cf8..ddf183a7f3 100644
--- a/meta-gnome/recipes-gnome/libpanel/libpanel_1.10.0.bb
+++ b/meta-gnome/recipes-gnome/libpanel/libpanel_1.10.0.bb
@@ -19,4 +19,4 @@ PACKAGECONFIG ?= ""
19 19
20EXTRA_OEMESON += "-Ddocs=disabled -Dintrospection=enabled -Dvapi=false" 20EXTRA_OEMESON += "-Ddocs=disabled -Dintrospection=enabled -Dvapi=false"
21 21
22REQUIRED_DISTRO_FEATURES = "gobject-introspection-data" 22REQUIRED_DISTRO_FEATURES = "gobject-introspection-data opengl"