From ff8006f06f989ed6a36462cd27759d528f2c574c Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 9 Jan 2016 08:56:06 +0000 Subject: systemd: Skip parsing on musl based targets systemd on musl doesn't yet work even though we have patches to make it compile it fails to run, therefore lets skip building it for now (From OE-Core rev: a1986acf66381dee18f5c8deae7cf52490d0f58a) Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/recipes-core/systemd/systemd_228.bb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta/recipes-core/systemd') diff --git a/meta/recipes-core/systemd/systemd_228.bb b/meta/recipes-core/systemd/systemd_228.bb index aa2e846b69..0e1bd8b7f1 100644 --- a/meta/recipes-core/systemd/systemd_228.bb +++ b/meta/recipes-core/systemd/systemd_228.bb @@ -443,4 +443,8 @@ pkg_prerm_udev-hwdb () { python () { if not bb.utils.contains ('DISTRO_FEATURES', 'systemd', True, False, d): raise bb.parse.SkipPackage("'systemd' not in DISTRO_FEATURES") + + import re + if re.match('.*musl*', d.getVar('TARGET_OS', True)) != None: + raise bb.parse.SkipPackage("Not _yet_ supported on musl based targets") } -- cgit v1.2.3-54-g00ecf