mirror of
https://github.com/tmux/tmux.git
synced 2025-04-10 11:08:49 +00:00
Use = not ==, from Leonardo Taccari.
This commit is contained in:
parent
33d4f854c0
commit
d8c0069254
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user