summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2020-12-15 08:38:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-12-18 22:52:24 +0000
commit76cb8af2bc2f4f01d148f8698b2fe4dc0372a2ba (patch)
tree99229bab1b2ea571a87184d699c6ac6a9888e7cf
parent5dcfad159eae38e18cea156d8a34a796000d0ca4 (diff)
downloadpoky-76cb8af2bc2f4f01d148f8698b2fe4dc0372a2ba.tar.gz
coreutils: enable xattrs by default for nativesdk
When using coreutils nativesdk (e.g. with buildtools-tarball) for running oe-core builds, a number of recipes/classes/etc. expect xattr support. This requirement is also expressed by the existing PACKAGECONFIG_class-native default including xattrs. (From OE-Core rev: 80d7debffdeed165006b26dcb89cffafaaecca06) Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/coreutils/coreutils_8.32.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-core/coreutils/coreutils_8.32.bb b/meta/recipes-core/coreutils/coreutils_8.32.bb
index 4eb357e310..320f93bdc2 100644
--- a/meta/recipes-core/coreutils/coreutils_8.32.bb
+++ b/meta/recipes-core/coreutils/coreutils_8.32.bb
@@ -39,6 +39,9 @@ PACKAGECONFIG_class-target ??= "\
39# The lib/oe/path.py requires xattr 39# The lib/oe/path.py requires xattr
40PACKAGECONFIG_class-native ??= "xattr" 40PACKAGECONFIG_class-native ??= "xattr"
41 41
42# oe-core builds need xattr support
43PACKAGECONFIG_class-nativesdk ??= "xattr"
44
42# with, without, depends, rdepends 45# with, without, depends, rdepends
43# 46#
44PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," 47PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl,"