diff options
author | Joe Slater <jslater@windriver.com> | 2013-08-16 13:07:28 -0700 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-08-20 07:09:38 -0700 |
commit | a8455a13554088613d4576a74b19294a8b49ff88 (patch) | |
tree | 4b75b2748b6d9be8c31cb45de43b5e923f0b28f0 /meta | |
parent | 8030fdc198c1037ae458899eebd14a4fae04c49a (diff) | |
download | openembedded-core-a8455a13554088613d4576a74b19294a8b49ff88.tar.gz openembedded-core-a8455a13554088613d4576a74b19294a8b49ff88.tar.bz2 openembedded-core-a8455a13554088613d4576a74b19294a8b49ff88.zip |
coreutils: allow for acl support
CQID: 430353
Define PACKAGECONFIG info for acl assuming it
might be a DISTRO_FEATURE.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/coreutils/coreutils_8.21.bb | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/meta/recipes-core/coreutils/coreutils_8.21.bb b/meta/recipes-core/coreutils/coreutils_8.21.bb index 26ada48b64..35c9100ee4 100644 --- a/meta/recipes-core/coreutils/coreutils_8.21.bb +++ b/meta/recipes-core/coreutils/coreutils_8.21.bb @@ -22,8 +22,16 @@ SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz \ SRC_URI[md5sum] = "065ba41828644eca5dd8163446de5d64" SRC_URI[sha256sum] = "adaa44bdab3fa5eb352e80d8a31fdbf957b78653d0c2cd30d63e161444288e18" -EXTRA_OECONF = "--disable-acl" -EXTRA_OECONF_class-native = "--disable-acl --without-gmp" +EXTRA_OECONF_class-native = "--without-gmp" + +# acl is not a default feature +# +PACKAGECONFIG_class-target ??= "${@base_contains('DISTRO_FEATURES', 'acl', 'acl', '', d)}" +PACKAGECONFIG_class-native ??= "" + +# with, without, depends, rdepends +# +PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," # [ df mktemp base64 gets a special treatment and is not included in this bindir_progs = "basename chcon cksum comm csplit cut dir dircolors dirname du \ |