From a59d54756f9b369fefdc7ca84c432d8873264f42 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 May 2020 09:58:49 -0400 Subject: Fix use of non-portable == in configure.ac. Fixes bug 34233. (This has bug has been backported to 0.3.5, but only released in 0.4.3, so it only needs a changes file there.) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a441162f4c..5f66d8c37e 100644 --- a/configure.ac +++ b/configure.ac @@ -368,7 +368,7 @@ AC_CACHE_CHECK([for __attribute__((fallthrough))], [tor_cv_c_attr_fallthrough=no] )]) CFLAGS="$saved_CFLAGS" -if test "$tor_cv_c_attr_fallthrough" == "yes"; then +if test "$tor_cv_c_attr_fallthrough" = "yes"; then AC_DEFINE(HAVE_ATTR_FALLTHROUGH, [1], [defined if we have the fallthrough attribute.]) fi -- cgit v1.2.3-54-g00ecf