From: Pádraig Brady Date: Fri, 15 Mar 2024 11:38:28 +0000 (+0000) Subject: build: provide a cross-compiling default for 16 bit float checks X-Git-Tag: v9.5~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c07a7d999e86e17ad5d4ea09a3fc8e8b1ac259f7;p=thirdparty%2Fcoreutils.git build: provide a cross-compiling default for 16 bit float checks * configure.ac: Provide a conservative 16 bit float support default when cross-compiling, to avoid configure failing in that case. --- diff --git a/configure.ac b/configure.ac index 898ccf5d5f..9cb6ee1494 100644 --- a/configure.ac +++ b/configure.ac @@ -585,6 +585,8 @@ AC_CACHE_VAL([utils_cv_ieee_16_bit_supported],[ utils_cv_ieee_16_bit_supported=yes ],[ utils_cv_ieee_16_bit_supported=no + ],[ + utils_cv_ieee_16_bit_supported=no ])]) AC_MSG_RESULT([$utils_cv_ieee_16_bit_supported]) if test $utils_cv_ieee_16_bit_supported = yes; then @@ -607,6 +609,8 @@ AC_CACHE_VAL([utils_cv_brain_16_bit_supported],[ utils_cv_brain_16_bit_supported=yes ],[ utils_cv_brain_16_bit_supported=no + ],[ + utils_cv_brain_16_bit_supported=no ])]) AC_MSG_RESULT([$utils_cv_brain_16_bit_supported]) if test $utils_cv_brain_16_bit_supported = yes; then