summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-02-26 18:27:04 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-28 13:21:54 +0000
commit9d973d3b4ed8d2ce3c8997dc21603a0952e7ef0e (patch)
treed82567893852c0134a574f1c45ce7db7b90c2fd0 /meta/conf/bitbake.conf
parent561ff52c516990c769681446c22d516eb6b91461 (diff)
downloadpoky-9d973d3b4ed8d2ce3c8997dc21603a0952e7ef0e.tar.gz
default-distrovars: Drop DISTRO_FEATURES_LIBC
After eglibc was merged into glibc, Kconfig support was also dropped so these libc features therefore are not effective anymore and can be removed (From OE-Core rev: c62b1cc06613a4cdddf53290e6203559f43fc62d) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 435646a946..1c5369ec98 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -123,7 +123,7 @@ TUNE_ASARGS ??= ""
123TUNE_FEATURES ??= "${TUNE_FEATURES_tune-${DEFAULTTUNE}}" 123TUNE_FEATURES ??= "${TUNE_FEATURES_tune-${DEFAULTTUNE}}"
124LIBCEXTENSION ??= "" 124LIBCEXTENSION ??= ""
125ABIEXTENSION ??= "" 125ABIEXTENSION ??= ""
126USE_NLS ??= "${@bb.utils.contains('DISTRO_FEATURES', 'libc-locale-code', 'yes', 'no', d)}" 126USE_NLS ??= "yes"
127SDKUSE_NLS ??= "yes" 127SDKUSE_NLS ??= "yes"
128 128
129TARGET_ARCH = "${TUNE_ARCH}" 129TARGET_ARCH = "${TUNE_ARCH}"
@@ -820,7 +820,7 @@ IMAGE_FEATURES += "${EXTRA_IMAGE_FEATURES}"
820# Native distro features (will always be used for -native, even if they 820# Native distro features (will always be used for -native, even if they
821# are not enabled for target) 821# are not enabled for target)
822DISTRO_FEATURES_NATIVE ?= "x11 ipv6 xattr" 822DISTRO_FEATURES_NATIVE ?= "x11 ipv6 xattr"
823DISTRO_FEATURES_NATIVESDK ?= "x11 libc-charsets libc-locales libc-locale-code" 823DISTRO_FEATURES_NATIVESDK ?= "x11"
824 824
825# Normally target distro features will not be applied to native builds: 825# Normally target distro features will not be applied to native builds:
826# Native distro features on this list will use the target feature value 826# Native distro features on this list will use the target feature value