commit 2709828494b961c92b9389bb2fd934f932fe54bc
parent 1b74c4904857cd917a0e672eccb7794a3c77c258
Author: David Goulet <dgoulet@torproject.org>
Date: Wed, 17 Feb 2021 13:22:36 -0500
Merge branch 'tor-gitlab/mr/311'
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/changes/bug40298 b/changes/bug40298
@@ -0,0 +1,3 @@
+ o Minor bugfixes (portability):
+ - Fix a non-portable usage of "==" with "test" in the configure script.
+ Fixes bug 40298; bugfix on 0.4.5.1-alpha.
diff --git a/configure.ac b/configure.ac
@@ -1157,7 +1157,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