diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-01-09 08:56:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-24 09:40:30 +0000 |
commit | ff8006f06f989ed6a36462cd27759d528f2c574c (patch) | |
tree | 4feae6287c6ff7cc86171014e0f4b0273feb4968 /meta | |
parent | f2856a121258ef6b3aa5450fadecf7b4c4ab4d53 (diff) | |
download | poky-ff8006f06f989ed6a36462cd27759d528f2c574c.tar.gz |
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 <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/systemd/systemd_228.bb | 4 |
1 files changed, 4 insertions, 0 deletions
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 () { | |||
443 | python () { | 443 | python () { |
444 | if not bb.utils.contains ('DISTRO_FEATURES', 'systemd', True, False, d): | 444 | if not bb.utils.contains ('DISTRO_FEATURES', 'systemd', True, False, d): |
445 | raise bb.parse.SkipPackage("'systemd' not in DISTRO_FEATURES") | 445 | raise bb.parse.SkipPackage("'systemd' not in DISTRO_FEATURES") |
446 | |||
447 | import re | ||
448 | if re.match('.*musl*', d.getVar('TARGET_OS', True)) != None: | ||
449 | raise bb.parse.SkipPackage("Not _yet_ supported on musl based targets") | ||
446 | } | 450 | } |