mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 21:32:13 +02:00
We want to avoid situations (like world builds) where weston-init will build, but weston won't. This could cause "nothing RPROVIDES..." dependency errors. We set required distro features in a common include file. (From OE-Core rev: 1c7802f025eb3d9ee3310e083a5d8bef7178de9c) Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 lines
245 B
PHP
9 lines
245 B
PHP
# distro features required by weston recipes
|
|
|
|
inherit features_check
|
|
|
|
# requires pam enabled if started via systemd
|
|
#
|
|
REQUIRED_DISTRO_FEATURES = "wayland opengl ${@oe.utils.conditional('VIRTUAL-RUNTIME_init_manager', 'systemd', 'pam', '', d)}"
|
|
|