summaryrefslogtreecommitdiffstats
path: root/meta/classes/libc-package.bbclass
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-07-07 11:08:27 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-12 23:10:13 +0100
commitea439968b672900f6773f36c571938325844c652 (patch)
tree09035f6d4f4308c8d27fb7c1e5605854e6b09e07 /meta/classes/libc-package.bbclass
parentec336702a2e3a521d24d1e5b00cee2b3ae86854e (diff)
downloadpoky-ea439968b672900f6773f36c571938325844c652.tar.gz
glibc: Upgrade to latest tip of master
- libc-package.bbclass: Do not use --old-style This option has been dropped from latest glibc (From OE-Core rev: 78ab1e7cdedc6a73395af5d053b49cf081416732) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/libc-package.bbclass')
-rw-r--r--meta/classes/libc-package.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass
index c1781c64b4..8c99d6113d 100644
--- a/meta/classes/libc-package.bbclass
+++ b/meta/classes/libc-package.bbclass
@@ -262,7 +262,7 @@ python package_do_split_gconvs () {
262 bb.error("locale_arch_options not found for target_arch=" + target_arch) 262 bb.error("locale_arch_options not found for target_arch=" + target_arch)
263 raise bb.build.FuncFailed("unknown arch:" + target_arch + " for locale_arch_options") 263 raise bb.build.FuncFailed("unknown arch:" + target_arch + " for locale_arch_options")
264 264
265 localedef_opts += " --force --old-style --no-archive --prefix=%s \ 265 localedef_opts += " --force --no-archive --prefix=%s \
266 --inputfile=%s/%s/i18n/locales/%s --charmap=%s %s/%s" \ 266 --inputfile=%s/%s/i18n/locales/%s --charmap=%s %s/%s" \
267 % (treedir, treedir, datadir, locale, encoding, outputpath, name) 267 % (treedir, treedir, datadir, locale, encoding, outputpath, name)
268 268
@@ -270,7 +270,7 @@ python package_do_split_gconvs () {
270 (path, i18npath, gconvpath, localedef_opts) 270 (path, i18npath, gconvpath, localedef_opts)
271 else: # earlier slower qemu way 271 else: # earlier slower qemu way
272 qemu = qemu_target_binary(d) 272 qemu = qemu_target_binary(d)
273 localedef_opts = "--force --old-style --no-archive --prefix=%s \ 273 localedef_opts = "--force --no-archive --prefix=%s \
274 --inputfile=%s/i18n/locales/%s --charmap=%s %s" \ 274 --inputfile=%s/i18n/locales/%s --charmap=%s %s" \
275 % (treedir, datadir, locale, encoding, name) 275 % (treedir, datadir, locale, encoding, name)
276 276