From 37acac2eb3b272bf3aeaab44219be560f908b499 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Wed, 4 Dec 2024 18:42:48 -0600 Subject: [PATCH] configure.ac: fix SC1105 ("Shells disambiguate (( differently or not at all."). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 94d4b3516..24775bd1b 100644 --- a/configure.ac +++ b/configure.ac @@ -701,7 +701,7 @@ fi # MATH LIBRARY SELECTION # Assure consistency of defaults -if test "$DEF_FAST_MATH" = "yes" && ((test "$enable_sp_math" != "no" && test "$enable_sp_math" != "") || test "$enable_heapmath" = "yes") +if test "$DEF_FAST_MATH" = "yes" && ( (test "$enable_sp_math" != "no" && test "$enable_sp_math" != "") || test "$enable_heapmath" = "yes") then DEF_FAST_MATH=no fi