diff options
author | Scott Ellis <scott@jumpnowtek.com> | 2016-01-18 05:42:48 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-19 17:37:34 +0000 |
commit | a4b48c26c5c011f8568537fa63521106067ab0c2 (patch) | |
tree | 3083460a2d9b5c3f0b22753e2b5fc9115d741edf | |
parent | 7a0b1c185083806500492cf87e823dd6c4b1795e (diff) | |
download | poky-a4b48c26c5c011f8568537fa63521106067ab0c2.tar.gz |
coreutils: Add xattr PACKAGECONFIG
From Yocto poky where it also stops this warning
WARNING: QA Issue: coreutils rdepends on libattr, but it isn't a build dependency? [build-deps]
(From OE-Core rev: 025c348d0f12be9405a8d14e9ef6787e37ee7a23)
Signed-off-by: Scott Ellis <scott@jumpnowtek.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/coreutils/coreutils_8.24.bb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/recipes-core/coreutils/coreutils_8.24.bb b/meta/recipes-core/coreutils/coreutils_8.24.bb index f042346241..6a09c594dc 100644 --- a/meta/recipes-core/coreutils/coreutils_8.24.bb +++ b/meta/recipes-core/coreutils/coreutils_8.24.bb | |||
@@ -28,14 +28,19 @@ SRC_URI[manpages.sha256sum] = "cf0333b5f134a331e0b46e2ddf90666f8bdc3281c1ca2c7cc | |||
28 | EXTRA_OECONF_class-native = "--without-gmp" | 28 | EXTRA_OECONF_class-native = "--without-gmp" |
29 | EXTRA_OECONF_class-target = "--enable-install-program=arch --libexecdir=${libdir}" | 29 | EXTRA_OECONF_class-target = "--enable-install-program=arch --libexecdir=${libdir}" |
30 | 30 | ||
31 | # acl is not a default feature | 31 | # acl and xattr are not default features |
32 | # | 32 | # |
33 | PACKAGECONFIG_class-target ??= "${@bb.utils.contains('DISTRO_FEATURES', 'acl', 'acl', '', d)}" | 33 | PACKAGECONFIG_class-target ??= "\ |
34 | ${@bb.utils.contains('DISTRO_FEATURES', 'acl', 'acl', '', d)} \ | ||
35 | ${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'xattr', '', d)} \ | ||
36 | " | ||
37 | |||
34 | PACKAGECONFIG_class-native ??= "" | 38 | PACKAGECONFIG_class-native ??= "" |
35 | 39 | ||
36 | # with, without, depends, rdepends | 40 | # with, without, depends, rdepends |
37 | # | 41 | # |
38 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," | 42 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," |
43 | PACKAGECONFIG[xattr] = "--enable-xattr,--disable-xattr,attr," | ||
39 | 44 | ||
40 | # [ df mktemp base64 gets a special treatment and is not included in this | 45 | # [ df mktemp base64 gets a special treatment and is not included in this |
41 | bindir_progs = "arch basename chcon cksum comm csplit cut dir dircolors dirname du \ | 46 | bindir_progs = "arch basename chcon cksum comm csplit cut dir dircolors dirname du \ |