From b509670c3348b4e32ef205f7f29ea7c07a0e95bd Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 17 Mar 2018 17:19:49 +0100 Subject: fixup2 (From OE-Core rev: 97556afe54c350b17493bf1c44f5fcc4de62e4f4) Signed-off-by: Richard Purdie --- meta/lib/oe/sdk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/lib/oe/sdk.py b/meta/lib/oe/sdk.py index 036d302447..beb56022a8 100644 --- a/meta/lib/oe/sdk.py +++ b/meta/lib/oe/sdk.py @@ -131,10 +131,10 @@ class Sdk(object, metaclass=ABCMeta): def install_locales(self, pm): # This is only relevant for glibc - if self.d.getVar("TCLIBC") != "glibc": + if self.d.getVar("TCLIBC", True) != "glibc": return - linguas = self.d.getVar("SDKIMAGE_LINGUAS") + linguas = self.d.getVar("SDKIMAGE_LINGUAS", True) if linguas: import fnmatch # Install the binary locales -- cgit v1.2.3-54-g00ecf