commit a59d54756f9b369fefdc7ca84c432d8873264f42
parent e63bfca5f2d98788d11b9a0a82bf67277a228c71
Author: Nick Mathewson <nickm@torproject.org>
Date: Fri, 15 May 2020 09:58:49 -0400
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.)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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