diff options
author | Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> | 2013-03-22 15:25:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 16:26:08 +0000 |
commit | d54141130475b091358807dce17ba8d244d33ea1 (patch) | |
tree | 270c2a33965049d5f732a64cbe716b80566a7bd9 /meta | |
parent | f8f6992fe0f29db1cc4df15b7449e06188052041 (diff) | |
download | openembedded-core-d54141130475b091358807dce17ba8d244d33ea1.tar.gz openembedded-core-d54141130475b091358807dce17ba8d244d33ea1.tar.bz2 openembedded-core-d54141130475b091358807dce17ba8d244d33ea1.zip |
coreutils: disable ACL as we do not depend on it
Coreutils does not depend on ACL but also does not disable it. Effect is
that from time to time I have a copy in sstate-cache which got built
with ACL and then I have problem while building images or sdk:
| Collected errors:
| * satisfy_dependencies_for: Cannot satisfy the following dependencies for packagegroup-core-standalone-hhvm-sdk-target:
| * libacl1 (>= 2.2.51) *
| * opkg_install_cmd: Cannot install package packagegroup-core-standalone-hhvm-sdk-target.
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/coreutils/coreutils_8.14.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-core/coreutils/coreutils_8.14.bb b/meta/recipes-core/coreutils/coreutils_8.14.bb index 04c9eb24fa..b82bbe4145 100644 --- a/meta/recipes-core/coreutils/coreutils_8.14.bb +++ b/meta/recipes-core/coreutils/coreutils_8.14.bb @@ -21,7 +21,8 @@ SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz \ SRC_URI[md5sum] = "bcb135ce553493a45aba01b39eb3920a" SRC_URI[sha256sum] = "0d120817c19292edb19e92ae6b8eac9020e03d51e0af9cb116cf82b65d18b02d" -EXTRA_OECONF_class-native = "--without-gmp" +EXTRA_OECONF = "--disable-acl" +EXTRA_OECONF_class-native = "--disable-acl --without-gmp" # [ 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 \ |