[oe-commits] [openembedded-core] 13/38: sdk: only install locales if we're using glibc

git at git.openembedded.org git at git.openembedded.org
Thu Apr 5 14:14:36 UTC 2018


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

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

commit 75918061572c0943aa4ea24df07b4ec1ae1aa09f
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Fri Mar 2 20:53:10 2018 +0000

    sdk: only install locales if we're using glibc
    
    Using glibc-locale to install locales only makes sense if we're using glibc.
    
    (From OE-Core rev: 8fc80734053645fa893694dfe33ddaee99aa9a1a)
    
    (From OE-Core rev: 1ca33a798f5edf4bb1e695a79a46088dd23b6858)
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    [Fixup for the getVar True bit]
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/lib/oe/sdk.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/lib/oe/sdk.py b/meta/lib/oe/sdk.py
index e33e215..c8b6055 100644
--- a/meta/lib/oe/sdk.py
+++ b/meta/lib/oe/sdk.py
@@ -85,6 +85,10 @@ class Sdk(object, metaclass=ABCMeta):
             bb.warn("cannot remove SDK dir: %s" % path)
 
     def install_locales(self, pm):
+        # This is only relevant for glibc
+        if self.d.getVar("TCLIBC", True) != "glibc":
+            return
+
         linguas = self.d.getVar("SDKIMAGE_LINGUAS", True)
         if linguas:
             if linguas == "all":

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


More information about the Openembedded-commits mailing list