diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2020-12-15 08:38:43 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-12-18 22:52:24 +0000 |
commit | 76cb8af2bc2f4f01d148f8698b2fe4dc0372a2ba (patch) | |
tree | 99229bab1b2ea571a87184d699c6ac6a9888e7cf /meta/recipes-core | |
parent | 5dcfad159eae38e18cea156d8a34a796000d0ca4 (diff) | |
download | poky-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>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/coreutils/coreutils_8.32.bb | 3 |
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 |
40 | PACKAGECONFIG_class-native ??= "xattr" | 40 | PACKAGECONFIG_class-native ??= "xattr" |
41 | 41 | ||
42 | # oe-core builds need xattr support | ||
43 | PACKAGECONFIG_class-nativesdk ??= "xattr" | ||
44 | |||
42 | # with, without, depends, rdepends | 45 | # with, without, depends, rdepends |
43 | # | 46 | # |
44 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," | 47 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," |