diff options
author | Ross Burton <ross.burton@intel.com> | 2018-01-29 17:11:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-30 11:50:11 +0000 |
commit | 563a020870ee0e8212609639c74f19a0f4fc0847 (patch) | |
tree | bc39b9e94dd82161a84d8549b1ffc7ba8443f905 /meta/classes/libc-package.bbclass | |
parent | 34c6b6d2044b4611a6dcc855c99aeadaf1c0394d (diff) | |
download | poky-563a020870ee0e8212609639c74f19a0f4fc0847.tar.gz |
meta: don't use deprecated functions from utils.bbclass
These functions were moved to meta/lib/oe in 2010 and the base_* functions in
utils.bbclass were intended to be a short-term compatibility layer. They're
still used in a few places, so update the callers to use the new functions.
(From OE-Core rev: c97acbd034532895ce57c6717ed1b3ccc7900b0d)
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.bbclass | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass index 739adce694..2e7cd25297 100644 --- a/meta/classes/libc-package.bbclass +++ b/meta/classes/libc-package.bbclass | |||
@@ -113,9 +113,9 @@ python package_do_split_gconvs () { | |||
113 | bb.error("datadir not defined") | 113 | bb.error("datadir not defined") |
114 | return | 114 | return |
115 | 115 | ||
116 | gconv_libdir = base_path_join(libdir, "gconv") | 116 | gconv_libdir = oe.path.join(libdir, "gconv") |
117 | charmap_dir = base_path_join(datadir, "i18n", "charmaps") | 117 | charmap_dir = oe.path.join(datadir, "i18n", "charmaps") |
118 | locales_dir = base_path_join(datadir, "i18n", "locales") | 118 | locales_dir = oe.path.join(datadir, "i18n", "locales") |
119 | binary_locales_dir = d.getVar('localedir') | 119 | binary_locales_dir = d.getVar('localedir') |
120 | 120 | ||
121 | def calc_gconv_deps(fn, pkg, file_regex, output_pattern, group): | 121 | def calc_gconv_deps(fn, pkg, file_regex, output_pattern, group): |
@@ -189,7 +189,7 @@ python package_do_split_gconvs () { | |||
189 | 189 | ||
190 | # Read in supported locales and associated encodings | 190 | # Read in supported locales and associated encodings |
191 | supported = {} | 191 | supported = {} |
192 | with open(base_path_join(d.getVar('WORKDIR'), "SUPPORTED")) as f: | 192 | with open(oe.path.join(d.getVar('WORKDIR'), "SUPPORTED")) as f: |
193 | for line in f.readlines(): | 193 | for line in f.readlines(): |
194 | try: | 194 | try: |
195 | locale, charset = line.rstrip().split() | 195 | locale, charset = line.rstrip().split() |
@@ -231,12 +231,12 @@ python package_do_split_gconvs () { | |||
231 | commands = {} | 231 | commands = {} |
232 | 232 | ||
233 | def output_locale_binary(name, pkgname, locale, encoding): | 233 | def output_locale_binary(name, pkgname, locale, encoding): |
234 | treedir = base_path_join(d.getVar("WORKDIR"), "locale-tree") | 234 | treedir = oe.path.join(d.getVar("WORKDIR"), "locale-tree") |
235 | ldlibdir = base_path_join(treedir, d.getVar("base_libdir")) | 235 | ldlibdir = oe.path.join(treedir, d.getVar("base_libdir")) |
236 | path = d.getVar("PATH") | 236 | path = d.getVar("PATH") |
237 | i18npath = base_path_join(treedir, datadir, "i18n") | 237 | i18npath = oe.path.join(treedir, datadir, "i18n") |
238 | gconvpath = base_path_join(treedir, "iconvdata") | 238 | gconvpath = oe.path.join(treedir, "iconvdata") |
239 | outputpath = base_path_join(treedir, binary_locales_dir) | 239 | outputpath = oe.path.join(treedir, binary_locales_dir) |
240 | 240 | ||
241 | use_cross_localedef = d.getVar("LOCALE_GENERATION_WITH_CROSS-LOCALEDEF") or "0" | 241 | use_cross_localedef = d.getVar("LOCALE_GENERATION_WITH_CROSS-LOCALEDEF") or "0" |
242 | if use_cross_localedef == "1": | 242 | if use_cross_localedef == "1": |
@@ -344,7 +344,7 @@ python package_do_split_gconvs () { | |||
344 | d.appendVar('RDEPENDS_%s' % metapkg, ' ' + pkg) | 344 | d.appendVar('RDEPENDS_%s' % metapkg, ' ' + pkg) |
345 | 345 | ||
346 | if use_bin == "compile": | 346 | if use_bin == "compile": |
347 | makefile = base_path_join(d.getVar("WORKDIR"), "locale-tree", "Makefile") | 347 | makefile = oe.path.join(d.getVar("WORKDIR"), "locale-tree", "Makefile") |
348 | m = open(makefile, "w") | 348 | m = open(makefile, "w") |
349 | m.write("all: %s\n\n" % " ".join(commands.keys())) | 349 | m.write("all: %s\n\n" % " ".join(commands.keys())) |
350 | for cmd in commands: | 350 | for cmd in commands: |