summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-07-03 20:51:45 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-07-05 11:39:06 +0100
commitfbfacebaa97de0866e898912365c09921982cc14 (patch)
tree514caea474e0a27482d799710504ac44259b23a1 /meta/recipes-extended
parent956ddcc9d480fe960637d897b9a0992eab8700a1 (diff)
downloadpoky-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')
-rw-r--r--meta/recipes-extended/libnss-nis/libnss-nis.bb7
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#
31python __anonymous () { 31COMPATIBLE_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