diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-08-15 12:52:38 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-08-15 12:52:38 +0000 |
commit | 94b4383252694aedfc61b00a09043dc5450a52ba (patch) | |
tree | 19bf0cc42cb46b9ff8e7a40fe3f96cf99f9a2e85 | |
parent | 6acb6740fb8152d03ebfde4f0a1cb158468fe197 (diff) | |
download | buildroot-novena-94b4383252694aedfc61b00a09043dc5450a52ba.tar.gz buildroot-novena-94b4383252694aedfc61b00a09043dc5450a52ba.zip |
The coreutils configure script is a steaming <many explitives deleted
in the interest of our younger readers>. This works around some of the
worst damage, thus allowing utils such as 'df' to properly cross compile
so that ltp will produce proper results.
-rw-r--r-- | package/coreutils/coreutils.mk | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package/coreutils/coreutils.mk b/package/coreutils/coreutils.mk index 137c023a1..52ec7fa77 100644 --- a/package/coreutils/coreutils.mk +++ b/package/coreutils/coreutils.mk @@ -28,6 +28,36 @@ $(COREUTILS_DIR)/.configured: $(COREUTILS_DIR)/.unpacked $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ ac_cv_func_strtod=yes \ + ac_fsusage_space=yes \ + fu_cv_sys_stat_statfs2_bsize=yes \ + ac_cv_func_closedir_void=no \ + ac_cv_func_getloadavg=no \ + ac_cv_lib_util_getloadavg=no \ + ac_cv_lib_getloadavg_getloadavg=no \ + ac_cv_func_getgroups=yes \ + ac_cv_func_getgroups_works=yes \ + ac_cv_func_chown_works=yes \ + ac_cv_have_decl_euidaccess=no \ + ac_cv_func_euidaccess=no \ + ac_cv_have_decl_strnlen=yes \ + ac_cv_func_strnlen_working=yes \ + ac_cv_func_lstat_dereferences_slashed_symlink=yes \ + ac_cv_func_lstat_empty_string_bug=no \ + ac_cv_func_stat_empty_string_bug=no \ + vb_cv_func_rename_trailing_slash_bug=no \ + ac_cv_have_decl_nanosleep=yes \ + jm_cv_func_nanosleep_works=yes \ + gl_cv_func_working_utimes=yes \ + ac_cv_func_utime_null=yes \ + ac_cv_have_decl_strerror_r=yes \ + ac_cv_func_strerror_r_char_p=yes \ + jm_cv_func_svid_putenv=yes \ + ac_cv_func_getcwd_null=yes \ + ac_cv_func_getdelim=yes \ + ac_cv_func_mkstemp=yes \ + utils_cv_func_mkstemp_limitations=no \ + utils_cv_func_mkdir_trailing_slash_bug=no \ + ac_cv_func_memcmp_working=yes \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ |