aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-08-04 23:01:20 -0700
committerKhem Raj <raj.khem@gmail.com>2021-08-06 20:38:40 -0700
commit4e05a4362fffc71906f80568f040beaf3ef67e03 (patch)
tree79d192d9de5a40c6d19a0438b47ff6c2d8d712da /meta-networking
parent70b5406c5e0d97e271830d1c63d809edbbae643f (diff)
downloadmeta-openembedded-contrib-4e05a4362fffc71906f80568f040beaf3ef67e03.tar.gz
nis: Drop uclibc check in anon python function
uclibc is no longer supported Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r--meta-networking/recipes-support/nis/nis.inc9
1 files changed, 0 insertions, 9 deletions
diff --git a/meta-networking/recipes-support/nis/nis.inc b/meta-networking/recipes-support/nis/nis.inc
index a968af174f..3ae0f7e95a 100644
--- a/meta-networking/recipes-support/nis/nis.inc
+++ b/meta-networking/recipes-support/nis/nis.inc
@@ -20,12 +20,3 @@ inherit autotools gettext pkgconfig
do_install() {
oe_runmake 'DESTDIR=${D}' install-strip
}
-
-# An attempt to build on uclibc will fail, causing annoyance,
-# so force the package to be skipped here (this will cause a
-# 'nothing provides' error)
-python () {
- os = d.getVar("TARGET_OS")
- if os == "linux-uclibc":
- raise bb.parse.SkipRecipe("NIS functionality requires rpcsvc/yp.h, uClibC does not provide this")
-}