diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2020-11-14 11:09:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-16 14:27:46 +0000 |
commit | a51ebb8d2d30436b449aa33b91ba8dd20410002b (patch) | |
tree | 42bcb28015547260d2bb9af405b6c97efc8c04f4 /meta/recipes-graphics | |
parent | de2a5404d3ef1a5dda7c5bb66c5a338883e249e6 (diff) | |
download | poky-a51ebb8d2d30436b449aa33b91ba8dd20410002b.tar.gz |
weston: add pam to REQUIRED_DISTRO_FEATURES
* it was added to weston-init in 72dd74c5d384dbe641cc7c02ecf766ff8d5f555f now world
builds are failing with:
ERROR: Nothing RPROVIDES 'weston-init' (but openembedded-core/meta/recipes-graphics/wayland/weston_9.0.0.bb RDEPENDS on or otherwise requires it)
weston-init was skipped: missing required distro feature 'pam' (not in DISTRO_FEATURES)
NOTE: Runtime target 'weston-init' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['weston-init']
ERROR: Nothing RPROVIDES 'weston-dev' (but openembedded-core/meta/recipes-graphics/wayland/weston_9.0.0.bb RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'weston-dev'
NOTE: Runtime target 'weston-dev' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['weston-dev']
ERROR: Nothing RPROVIDES 'weston' (but openembedded-core/meta/recipes-graphics/wayland/weston_9.0.0.bb RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'weston'
NOTE: Runtime target 'weston' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['weston']
(From OE-Core rev: 0a882490fe75915c7a119f3498df6750be25f8e0)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/wayland/weston_9.0.0.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston_9.0.0.bb b/meta/recipes-graphics/wayland/weston_9.0.0.bb index 051fd85941..8cb105c785 100644 --- a/meta/recipes-graphics/wayland/weston_9.0.0.bb +++ b/meta/recipes-graphics/wayland/weston_9.0.0.bb | |||
@@ -21,7 +21,8 @@ UPSTREAM_CHECK_URI = "https://wayland.freedesktop.org/releases.html" | |||
21 | 21 | ||
22 | inherit meson pkgconfig useradd features_check | 22 | inherit meson pkgconfig useradd features_check |
23 | # depends on virtual/egl | 23 | # depends on virtual/egl |
24 | REQUIRED_DISTRO_FEATURES = "opengl" | 24 | # weston-init requires pam enabled if started via systemd |
25 | REQUIRED_DISTRO_FEATURES = "opengl ${@oe.utils.conditional('VIRTUAL-RUNTIME_init_manager', 'systemd', 'pam', '', d)}" | ||
25 | 26 | ||
26 | DEPENDS = "libxkbcommon gdk-pixbuf pixman cairo glib-2.0" | 27 | DEPENDS = "libxkbcommon gdk-pixbuf pixman cairo glib-2.0" |
27 | DEPENDS += "wayland wayland-protocols libinput virtual/egl pango wayland-native" | 28 | DEPENDS += "wayland wayland-protocols libinput virtual/egl pango wayland-native" |