From 1fbc5a03d36a6ed3f823a133f6130dde9833c33b Mon Sep 17 00:00:00 2001 From: André Draszik Date: Fri, 10 Jan 2020 17:15:41 +0000 Subject: coreutils: set some more autotools / m4 test results MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While we set test outcomes in oe-core meta/site, this here uses an old version of gnulib with slightly different variable names for some of the results: * jm_cv_func_unlink_busy_text -> gl_cv_func_unlink_busy_text * jm_cv_have_proc_uptime -> gl_cv_have_proc_uptime * jm_ac_cv_func_link_follows_symlink -> gl_cv_func_link_follows_symlink * gl_cv_func_mkdir_trailing_slash_bug -> gl_cv_func_mkdir_trailing_slash_works (meaning inverted) (defaults to working in recent coreutils when cross-compiling * gl_cv_func_rename_trailing_dest_slash_bug -> gl_cv_func_rename_slash_dst_works (meaning inverted) defaults to working in recent coreutils when cross-compiling for linux * gl_cv_func_rename_trailing_slash_bug -> gl_cv_func_rename_slash_src_works (meaning inverted) defaults to working in recent coreutils when cross-compiling for linux This helps to make some tools work in the first place (uptime), but also avoids useless extra wrappers which coreutils otherwise compiles in. While at it, convert to CACHED_CONFIGUREVAR instead of EXTRA_OECONF. Signed-off-by: André Draszik Signed-off-by: Ross Burton --- recipes-core/coreutils/coreutils_6.9.bb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/recipes-core/coreutils/coreutils_6.9.bb b/recipes-core/coreutils/coreutils_6.9.bb index f6017ec..42b4f3c 100644 --- a/recipes-core/coreutils/coreutils_6.9.bb +++ b/recipes-core/coreutils/coreutils_6.9.bb @@ -32,9 +32,15 @@ SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.bz2 \ SRC_URI[md5sum] = "c9607d8495f16e98906e7ed2d9751a06" SRC_URI[sha256sum] = "89c2895ad157de50e53298b22d91db116ee4e1dd3fdf4019260254e2e31497b0" -EXTRA_OECONF += "ac_cv_func_getgroups_works=yes \ +CACHED_CONFIGUREVARS = "ac_cv_func_getgroups_works=yes \ ac_cv_func_strcoll_works=yes \ ac_cv_func_working_mktime=yes \ + jm_ac_cv_func_link_follows_symlink=no \ + jm_cv_func_unlink_busy_text=yes \ + jm_cv_have_proc_uptime=yes \ + gl_cv_func_mkdir_trailing_slash_bug=no \ + gl_cv_func_rename_trailing_slash_bug=no \ + gl_cv_func_rename_trailing_dest_slash_bug=no \ " # acl is not a default feature -- cgit v1.2.3-54-g00ecf