From aebd0a4080559a5c24e580ddf50e5b5c8ff1cc29 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 17 Feb 2021 12:36:23 -0500 Subject: Make our configure.ac script use the portable `=` comparison Back in 0.4.5.1-alpha we added an `==` comparison, which isn't portable. Fixes bug #40298; bugfix on 0.4.5.1-alpha. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index a8d95e49eb..e8775a98f7 100644 --- a/configure.ac +++ b/configure.ac @@ -1144,7 +1144,7 @@ AC_RUN_IFELSE([AC_LANG_SOURCE([AC_LANG_PROGRAM([[ ]])])], [openssl_ver_mismatch=no], [ # This is a kludge to figure out whether compilation failed, or whether # running the program failed. - if test "$ac_retval" == "1"; then + if test "$ac_retval" = "1"; then openssl_ver_mismatch=inconclusive else openssl_ver_mismatch=yes -- cgit v1.2.3-54-g00ecf