summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/sdk.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/sdk.py')
-rw-r--r--meta/lib/oe/sdk.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/sdk.py b/meta/lib/oe/sdk.py
index e33e21553d..c8b6055420 100644
--- a/meta/lib/oe/sdk.py
+++ b/meta/lib/oe/sdk.py
@@ -85,6 +85,10 @@ class Sdk(object, metaclass=ABCMeta):
85 bb.warn("cannot remove SDK dir: %s" % path) 85 bb.warn("cannot remove SDK dir: %s" % path)
86 86
87 def install_locales(self, pm): 87 def install_locales(self, pm):
88 # This is only relevant for glibc
89 if self.d.getVar("TCLIBC", True) != "glibc":
90 return
91
88 linguas = self.d.getVar("SDKIMAGE_LINGUAS", True) 92 linguas = self.d.getVar("SDKIMAGE_LINGUAS", True)
89 if linguas: 93 if linguas:
90 if linguas == "all": 94 if linguas == "all":