diff options
Diffstat (limited to 'packages/nis')
-rw-r--r-- | packages/nis/nis.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/nis/nis.inc b/packages/nis/nis.inc index 479718cf5e..18dd00437a 100644 --- a/packages/nis/nis.inc +++ b/packages/nis/nis.inc @@ -28,7 +28,7 @@ do_install() { # so force the package to be skipped here (this will cause a # 'nothing provides' error) python () { - os = bb.data.getVar("TARGET_OS", d, 1) - if os == "linux-uclibc": - raise bb.parse.SkipPackage("NIS functionality requires rpcsvc/yp.h, uClibC does not provide this") + os = bb.data.getVar("TARGET_OS", d, 1) + if os == "linux-uclibc": + raise bb.parse.SkipPackage("NIS functionality requires rpcsvc/yp.h, uClibC does not provide this") } |