[oe-commits] [openembedded-core] branch morty-next updated: fixup2

git at git.openembedded.org git at git.openembedded.org
Sat Mar 17 16:20:17 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.

The following commit(s) were added to refs/heads/morty-next by this push:
     new f44e060  fixup2
f44e060 is described below

commit f44e0609d9ca5a9ab16bafeb02323c3aa45471af
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