diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-03-25 18:06:11 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-03-25 18:06:11 +0000 |
commit | f9a697a2fd26e5ca7f0ea4eb153d4a3c2aafdbbe (patch) | |
tree | bac9541b957943472f4127be780005cad3715888 /packages/glibc | |
parent | 1d0b59559c37157b629a886a6fce4ec0c4311899 (diff) |
glibc, local.conf.sample: Introduce and handle new OE variable, GLIBC_GENERATE_LOCALES
to limit set of generated binary locales.
* If ENABLE_BINARY_LOCALE_GENERATION is set to "1", you can limit locales
generated to the list provided by GLIBC_GENERATE_LOCALES. This is huge
time-savior for developmental builds. Format: list of locale.encoding pairs
with spaces as separators, e.g.:
GLIBC_GENERATE_LOCALES = "en_GB.UTF-8 de_DE.UTF-8"
* Check your distro for minimal set of locales required. Old-time default is
"en_GB.UTF-8 de_DE.UTF-8 fr_FR.UTF-8".
* Angstrom requires en_GB only.
* This commit does not changes the default, which is still generation of all
available locales.
* Closes #1966.
Diffstat (limited to 'packages/glibc')
-rw-r--r-- | packages/glibc/glibc-package.bbclass | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/packages/glibc/glibc-package.bbclass b/packages/glibc/glibc-package.bbclass index 5783ab1fcf..4bd4223657 100644 --- a/packages/glibc/glibc-package.bbclass +++ b/packages/glibc/glibc-package.bbclass @@ -202,9 +202,14 @@ python package_do_split_gconvs () { do_split_packages(d, locales_dir, file_regex='(.*)', output_pattern='glibc-localedata-%s', description='locale definition for %s', hook=calc_locale_deps, extra_depends='') bb.data.setVar('PACKAGES', bb.data.getVar('PACKAGES', d) + ' glibc-gconv', d) - f = open(os.path.join(bb.data.getVar('WORKDIR', d, 1), "SUPPORTED"), "r") - supported = f.readlines() - f.close() + supported = bb.data.getVar('GLIBC_GENERATE_LOCALES', d, 1) + if not supported or supported == "all": + f = open(os.path.join(bb.data.getVar('WORKDIR', d, 1), "SUPPORTED"), "r") + supported = f.readlines() + f.close() + else: + supported = supported.split() + supported = map(lambda s:s.replace(".", " ") + "\n", supported) dot_re = re.compile("(.*)\.(.*)") |