[oe-commits] [openembedded-core] 14/15: fixup2

git at git.openembedded.org git at git.openembedded.org
Mon Mar 19 15:59:24 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch morty-next
in repository openembedded-core.

commit 97556afe54c350b17493bf1c44f5fcc4de62e4f4
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sat Mar 17 17:19:49 2018 +0100

    fixup2
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 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 036d302..beb5602 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

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list