diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-07-07 11:08:27 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-12 23:10:02 +0100 |
commit | 78ab1e7cdedc6a73395af5d053b49cf081416732 (patch) | |
tree | 7ab5d37d67a16a7b6dba2e91d7ad155d92a9cc24 /meta/classes | |
parent | 37e8b6ecf9f9163d7b5b3becdc2feba57df4838f (diff) | |
download | openembedded-core-78ab1e7cdedc6a73395af5d053b49cf081416732.tar.gz openembedded-core-78ab1e7cdedc6a73395af5d053b49cf081416732.tar.bz2 openembedded-core-78ab1e7cdedc6a73395af5d053b49cf081416732.zip |
glibc: Upgrade to latest tip of master
- libc-package.bbclass: Do not use --old-style
This option has been dropped from latest glibc
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/libc-package.bbclass | 4 |
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 () { bb.error("locale_arch_options not found for target_arch=" + target_arch) raise bb.build.FuncFailed("unknown arch:" + target_arch + " for locale_arch_options") - localedef_opts += " --force --old-style --no-archive --prefix=%s \ + localedef_opts += " --force --no-archive --prefix=%s \ --inputfile=%s/%s/i18n/locales/%s --charmap=%s %s/%s" \ % (treedir, treedir, datadir, locale, encoding, outputpath, name) @@ -270,7 +270,7 @@ python package_do_split_gconvs () { (path, i18npath, gconvpath, localedef_opts) else: # earlier slower qemu way qemu = qemu_target_binary(d) - localedef_opts = "--force --old-style --no-archive --prefix=%s \ + localedef_opts = "--force --no-archive --prefix=%s \ --inputfile=%s/i18n/locales/%s --charmap=%s %s" \ % (treedir, datadir, locale, encoding, name) |