]> code.ossystems Code Review - openembedded-core.git/commitdiff
sdk: only install locales if we're using glibc
authorRoss Burton <ross.burton@intel.com>
Fri, 2 Mar 2018 20:53:10 +0000 (20:53 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 5 Apr 2018 14:11:13 +0000 (15:11 +0100)
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@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
[Fixup for the getVar True bit]
Signed-off-by: Armin Kuster <akuster808@gmail.com>
meta/lib/oe/sdk.py

index e33e21553d6e0f3545e16d2702462374caa8209a..c8b6055420e361cc3f298ce2e9dcbb25c561ab86 100644 (file)
@@ -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":