mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Use = not ==, from Leonardo Taccari.
This commit is contained in:
@ -34,10 +34,10 @@ AC_ARG_VAR(
|
|||||||
# Set up convenient fuzzing defaults before initializing compiler.
|
# Set up convenient fuzzing defaults before initializing compiler.
|
||||||
if test "x$enable_fuzzing" = xyes; then
|
if test "x$enable_fuzzing" = xyes; then
|
||||||
AC_DEFINE(NEED_FUZZING)
|
AC_DEFINE(NEED_FUZZING)
|
||||||
test "x$CC" == x && CC=clang
|
test "x$CC" = x && CC=clang
|
||||||
test "x$FUZZING_LIBS" == x && \
|
test "x$FUZZING_LIBS" = x && \
|
||||||
FUZZING_LIBS="-fsanitize=fuzzer"
|
FUZZING_LIBS="-fsanitize=fuzzer"
|
||||||
test "x$SAVED_CFLAGS" == x && \
|
test "x$SAVED_CFLAGS" = x && \
|
||||||
AM_CFLAGS="-g -fsanitize=fuzzer-no-link,address"
|
AM_CFLAGS="-g -fsanitize=fuzzer-no-link,address"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user