aboutsummaryrefslogtreecommitdiffstats
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 00:24:14 +0100
commitc939255a88d367d19497184ed64b828f021e5ef4 (patch)
tree58ae78c1dab97f816b2fc3164a3d87dd93cc1d30
parentdac867dc63af70ae992c50697d2be95c3e7b58bb (diff)
downloadopenembedded-core-contrib-c939255a88d367d19497184ed64b828f021e5ef4.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 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
-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"
#
# We will skip parsing this packagegeoup for non-glibc systems
#
-python __anonymous () {
- if d.getVar('TCLIBC') != "glibc":
- raise bb.parse.SkipRecipe("incompatible with %s C library" %
- d.getVar('TCLIBC'))
-}
-
+COMPATIBLE_HOST_libc-musl = 'null'