diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-04-18 08:48:03 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-04-18 08:48:03 +0100 |
commit | 3a892228f45f744982fba827266cdf115db4464b (patch) | |
tree | 6e5866d067efb0c6f4ea00c700de39fd5bf090e7 | |
parent | 5fa8e5e13f86cccd3bff6d6118328d0772d6f147 (diff) | |
download | rtmux-3a892228f45f744982fba827266cdf115db4464b.tar.gz rtmux-3a892228f45f744982fba827266cdf115db4464b.tar.bz2 rtmux-3a892228f45f744982fba827266cdf115db4464b.zip |
Use = not ==, from Leonardo Taccari.
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index b2a13c5e..8b13854f 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 |