From f872c6d28f48a4412a4220ddb5f0bc53e12ee570 Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 13 Feb 2025 01:01:32 +0000 Subject: [PATCH] configure.ac: fix bashism '==' is a bashism, use POSIX '=' instead. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4c6d3a1318..8eb823206a 100644 --- a/configure.ac +++ b/configure.ac @@ -386,7 +386,7 @@ if test "x$enable_multithreading" != "xno" ; then CC="$PTHREAD_CC" CXX="$PTHREAD_CXX" ],[HAVE_PTHREAD=no]) - if test "x${HAVE_PTHREAD}" == "xno"; then + if test "x${HAVE_PTHREAD}" = "xno"; then AC_MSG_WARN("pthread support, needed for multithreading, is not found") fi fi