diff options
author | Marine Vovard <m.vovard@phytec.de> | 2023-08-16 11:31:26 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-08-17 08:03:39 -0700 |
commit | ed02d80a45f90ee62610a98b60ea7e3184b865e0 (patch) | |
tree | e4d0edbc8ca04548172a568c3796024e4327a840 | |
parent | 5955075b4cc07233be3b76dcec2c857d67ad7f00 (diff) | |
download | meta-openembedded-ed02d80a45f90ee62610a98b60ea7e3184b865e0.tar.gz |
python3-kivy: Require X11 or Wayland in DISTRO_FEATURES
At least one of the following DISTRO_FEATURES needs to be present: X11 or
Wayland. The recipe now work with pure Wayland.
Signed-off-by: Marine Vovard <m.vovard@phytec.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-kivy_2.1.0..bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-kivy_2.1.0..bb b/meta-python/recipes-devtools/python/python3-kivy_2.1.0..bb index ca1fc5f96d..b02c55a85b 100644 --- a/meta-python/recipes-devtools/python/python3-kivy_2.1.0..bb +++ b/meta-python/recipes-devtools/python/python3-kivy_2.1.0..bb | |||
@@ -43,7 +43,9 @@ export KIVY_GRAPHICS | |||
43 | KIVY_CROSS_SYSROOT="${RECIPE_SYSROOT}" | 43 | KIVY_CROSS_SYSROOT="${RECIPE_SYSROOT}" |
44 | export KIVY_CROSS_SYSROOT | 44 | export KIVY_CROSS_SYSROOT |
45 | 45 | ||
46 | REQUIRED_DISTRO_FEATURES += "x11 opengl gobject-introspection-data" | 46 | REQUIRED_DISTRO_FEATURES += "opengl gobject-introspection-data" |
47 | |||
48 | ANY_OF_DISTRO_FEATURES = "x11 wayland" | ||
47 | 49 | ||
48 | DEPENDS += " \ | 50 | DEPENDS += " \ |
49 | gstreamer1.0 \ | 51 | gstreamer1.0 \ |