diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-08-04 23:01:20 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-08-06 20:38:40 -0700 |
commit | 4e05a4362fffc71906f80568f040beaf3ef67e03 (patch) | |
tree | 79d192d9de5a40c6d19a0438b47ff6c2d8d712da | |
parent | 70b5406c5e0d97e271830d1c63d809edbbae643f (diff) | |
download | meta-openembedded-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>
-rw-r--r-- | meta-networking/recipes-support/nis/nis.inc | 9 |
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 | |||
20 | do_install() { | 20 | do_install() { |
21 | oe_runmake 'DESTDIR=${D}' install-strip | 21 | oe_runmake 'DESTDIR=${D}' install-strip |
22 | } | 22 | } |
23 | |||
24 | # An attempt to build on uclibc will fail, causing annoyance, | ||
25 | # so force the package to be skipped here (this will cause a | ||
26 | # 'nothing provides' error) | ||
27 | python () { | ||
28 | os = d.getVar("TARGET_OS") | ||
29 | if os == "linux-uclibc": | ||
30 | raise bb.parse.SkipRecipe("NIS functionality requires rpcsvc/yp.h, uClibC does not provide this") | ||
31 | } | ||