mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
udev: skip in systemd distros, to fix world builds
(From OE-Core rev: 1179e43d67c96367480e563a36684d550d83fcbe) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
148bcc1124
commit
e07e0f80d6
@@ -99,3 +99,9 @@ do_install_append () {
|
||||
|
||||
echo 'udev_run="/var/run/udev"' >> ${D}${sysconfdir}/udev/udev.conf
|
||||
}
|
||||
|
||||
# As systemd also builds udev, skip this package if we're doing a systemd build.
|
||||
python () {
|
||||
if oe.utils.contains ('DISTRO_FEATURES', 'systemd', True, False, d):
|
||||
raise bb.parse.SkipPackage("'systemd' in DISTRO_FEATURES")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user