diff options
Diffstat (limited to 'meta/lib/oe/sdk.py')
-rw-r--r-- | meta/lib/oe/sdk.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/sdk.py b/meta/lib/oe/sdk.py index 6f10139a5a..e0e2086f85 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") != "glibc": | ||
90 | return | ||
91 | |||
88 | linguas = self.d.getVar("SDKIMAGE_LINGUAS") | 92 | linguas = self.d.getVar("SDKIMAGE_LINGUAS") |
89 | if linguas: | 93 | if linguas: |
90 | if linguas == "all": | 94 | if linguas == "all": |