From d8c006925464ce50d92aee913aa452acf2033173 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 18 Apr 2021 08:48:03 +0100 Subject: [PATCH] Use = not ==, from Leonardo Taccari. --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 158e228c..9bbfd49e 100644 --- a/configure.ac +++ b/configure.ac @@ -34,10 +34,10 @@ AC_ARG_VAR( # Set up convenient fuzzing defaults before initializing compiler. if test "x$enable_fuzzing" = xyes; then AC_DEFINE(NEED_FUZZING) - test "x$CC" == x && CC=clang - test "x$FUZZING_LIBS" == x && \ + test "x$CC" = x && CC=clang + test "x$FUZZING_LIBS" = x && \ FUZZING_LIBS="-fsanitize=fuzzer" - test "x$SAVED_CFLAGS" == x && \ + test "x$SAVED_CFLAGS" = x && \ AM_CFLAGS="-g -fsanitize=fuzzer-no-link,address" fi