One byte fix to fix OSS Fuzz AFL support

"x$LIB_FUZZING_ENGINE" is not the correct filename to test for - remove
the x!
This commit is contained in:
Max Dymond 2019-07-22 11:23:54 +01:00
parent 3bfa3f1946
commit 6e26599980
No known key found for this signature in database
GPG Key ID: 12A8D9E2219BD5FA

View File

@ -147,7 +147,7 @@ AM_CONDITIONAL([USE_OSSFUZZERS], [test "x$have_ossfuzzers" = "xyes"])
AC_SUBST([LIB_FUZZING_ENGINE])
AM_CONDITIONAL([USE_OSSFUZZ_FLAG], [test "x$LIB_FUZZING_ENGINE" = "x-fsanitize=fuzzer"])
AM_CONDITIONAL([USE_OSSFUZZ_STATIC], [test -f "x$LIB_FUZZING_ENGINE"])
AM_CONDITIONAL([USE_OSSFUZZ_STATIC], [test -f "$LIB_FUZZING_ENGINE"])
if test x$GCC = xyes; then