summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/packages/glibc/glibc-package.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/packages/glibc/glibc-package.bbclass b/meta/packages/glibc/glibc-package.bbclass
index 51f5a80bec..6bc8d2a2af 100644
--- a/meta/packages/glibc/glibc-package.bbclass
+++ b/meta/packages/glibc/glibc-package.bbclass
@@ -268,7 +268,7 @@ python package_do_split_gconvs () {
268 cmd = "PATH=\"%s\" I18NPATH=\"%s\" %s -L %s %s/bin/localedef %s" % (path, i18npath, qemu, treedir, treedir, localedef_opts) 268 cmd = "PATH=\"%s\" I18NPATH=\"%s\" %s -L %s %s/bin/localedef %s" % (path, i18npath, qemu, treedir, treedir, localedef_opts)
269 bb.note("generating locale %s (%s)" % (locale, encoding)) 269 bb.note("generating locale %s (%s)" % (locale, encoding))
270 if os.system(cmd): 270 if os.system(cmd):
271 raise bb.build.FuncFailed("localedef returned an error.") 271 raise bb.build.FuncFailed("localedef returned an error (command was %s)." % cmd)
272 272
273 def output_locale(name, locale, encoding): 273 def output_locale(name, locale, encoding):
274 use_bin = bb.data.getVar("GLIBC_INTERNAL_USE_BINARY_LOCALE", d, 1) 274 use_bin = bb.data.getVar("GLIBC_INTERNAL_USE_BINARY_LOCALE", d, 1)