aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Dymond <cmeister2@gmail.com>2019-07-22 11:23:54 +0100
committerMax Dymond <cmeister2@gmail.com>2019-07-22 11:23:54 +0100
commit6e2659998037e8ed31a4ec4437ae34c09bb567fc (patch)
tree277a01cd231d304837acf3ec6f0515c67de96cc0 /configure.ac
parent3bfa3f1946a8afe0d9ad3082ebfe6a8dd3346814 (diff)
downloadjansson-6e2659998037e8ed31a4ec4437ae34c09bb567fc.zip
jansson-6e2659998037e8ed31a4ec4437ae34c09bb567fc.tar.gz
jansson-6e2659998037e8ed31a4ec4437ae34c09bb567fc.tar.bz2
One byte fix to fix OSS Fuzz AFL support
"x$LIB_FUZZING_ENGINE" is not the correct filename to test for - remove the x!
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 1e6500b..a2da157 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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