diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-07-03 20:51:45 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-05 11:39:06 +0100 |
commit | fbfacebaa97de0866e898912365c09921982cc14 (patch) | |
tree | 514caea474e0a27482d799710504ac44259b23a1 /meta/recipes-extended/libnss-nis | |
parent | 956ddcc9d480fe960637d897b9a0992eab8700a1 (diff) | |
download | poky-fbfacebaa97de0866e898912365c09921982cc14.tar.gz |
libnss-nis: Limit parse skip only for target recipe on musl
on the host side we are glibc based therefore some native and nativesdk
recipes might need this package even when we target musl based systems
(From OE-Core rev: c939255a88d367d19497184ed64b828f021e5ef4)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libnss-nis')
-rw-r--r-- | meta/recipes-extended/libnss-nis/libnss-nis.bb | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/meta/recipes-extended/libnss-nis/libnss-nis.bb b/meta/recipes-extended/libnss-nis/libnss-nis.bb index e0f69b02ef..47447acd6c 100644 --- a/meta/recipes-extended/libnss-nis/libnss-nis.bb +++ b/meta/recipes-extended/libnss-nis/libnss-nis.bb | |||
@@ -28,9 +28,4 @@ BBCLASSEXTEND += "native nativesdk" | |||
28 | # | 28 | # |
29 | # We will skip parsing this packagegeoup for non-glibc systems | 29 | # We will skip parsing this packagegeoup for non-glibc systems |
30 | # | 30 | # |
31 | python __anonymous () { | 31 | COMPATIBLE_HOST_libc-musl = 'null' |
32 | if d.getVar('TCLIBC') != "glibc": | ||
33 | raise bb.parse.SkipRecipe("incompatible with %s C library" % | ||
34 | d.getVar('TCLIBC')) | ||
35 | } | ||
36 | |||