summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2021-04-18 08:48:03 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2021-06-10 09:20:51 +0100
commitd8c006925464ce50d92aee913aa452acf2033173 (patch)
treea0fd7410d656589d377d49bc7f42ef6772c33aeb
parent33d4f854c04b993c57195030ca33429256919949 (diff)
Use = not ==, from Leonardo Taccari.
-rw-r--r--configure.ac6
1 files 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