[oe-commits] Robert Yang : coreutils 6.9: fix unknown-configure-option

git at git.openembedded.org git at git.openembedded.org
Sat Feb 14 22:27:39 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: 1fc671938b2389866fb4a36801698caf4e92e05d
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=1fc671938b2389866fb4a36801698caf4e92e05d

Author: Robert Yang <liezhi.yang at windriver.com>
Date:   Thu Feb 12 19:02:55 2015 -0800

coreutils 6.9: fix unknown-configure-option

Fixed:
WARNING: QA Issue: coreutils: configure was passed unrecognised options: --disable-acl [unknown-configure-option]

It doesn't support --enable-acl or --disable-acl, use
ac_cv_header_acl_libacl_h to fix the problem.

Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 meta/recipes-core/coreutils/coreutils_6.9.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/coreutils/coreutils_6.9.bb b/meta/recipes-core/coreutils/coreutils_6.9.bb
index 7f34e1b..9189426 100644
--- a/meta/recipes-core/coreutils/coreutils_6.9.bb
+++ b/meta/recipes-core/coreutils/coreutils_6.9.bb
@@ -37,7 +37,7 @@ PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'acl', 'acl', '', d)}
 
 # with, without, depends, rdepends
 #
-PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl,"
+PACKAGECONFIG[acl] = "ac_cv_header_sys_acl_h=yes,ac_cv_header_sys_acl_h=no,acl,"
 
 
 # [ gets a special treatment and is not included in this



More information about the Openembedded-commits mailing list