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/recipes-support/icu | |
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/recipes-support/icu')
-rw-r--r-- | meta/recipes-support/icu/icu.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/icu/icu.inc b/meta/recipes-support/icu/icu.inc index b9ac59a1ad..983118cd61 100644 --- a/meta/recipes-support/icu/icu.inc +++ b/meta/recipes-support/icu/icu.inc | |||
@@ -28,8 +28,8 @@ EXTRA_OECONF = "--with-cross-build=${STAGING_ICU_DIR_NATIVE}" | |||
28 | EXTRA_OECONF_class-native = "" | 28 | EXTRA_OECONF_class-native = "" |
29 | EXTRA_OECONF_class-nativesdk = "--with-cross-build=${STAGING_ICU_DIR_NATIVE}" | 29 | EXTRA_OECONF_class-nativesdk = "--with-cross-build=${STAGING_ICU_DIR_NATIVE}" |
30 | 30 | ||
31 | EXTRA_OECONF_append_class-target = "${@base_conditional('SITEINFO_ENDIANNESS', 'be', ' --with-data-packaging=archive', '', d)}" | 31 | EXTRA_OECONF_append_class-target = "${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'be', ' --with-data-packaging=archive', '', d)}" |
32 | TARGET_CXXFLAGS_append = "${@base_conditional('SITEINFO_ENDIANNESS', 'be', ' -DICU_DATA_DIR=\\""${datadir}/${BPN}/${PV}\\""', '', d)}" | 32 | TARGET_CXXFLAGS_append = "${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'be', ' -DICU_DATA_DIR=\\""${datadir}/${BPN}/${PV}\\""', '', d)}" |
33 | 33 | ||
34 | # strtod_l() is not supported by musl; also xlocale.h is missing | 34 | # strtod_l() is not supported by musl; also xlocale.h is missing |
35 | # It is not possible to disable its use via configure switches or env vars | 35 | # It is not possible to disable its use via configure switches or env vars |