diff --git a/fuzzing/Jamfile b/fuzzing/Jamfile index 4a1dc263..3075df75 100644 --- a/fuzzing/Jamfile +++ b/fuzzing/Jamfile @@ -30,7 +30,7 @@ rule make-corpus ( target : sources + : properties * ) } actions make-corpus { - "$(PYTHON:E=python)" "$(RUNNER)" $(<) $(>) + "$(PYTHON:E=python)" "$(RUNNER)" "$(<)" "$(>)" } toolset.flags $(__name__).make-corpus PYTHON ; @@ -43,7 +43,7 @@ for local fuzzer in $(all_fuzzers) local seed_files = [ glob "$(seed_corpus)/*" ] ; # Create the output corpus directories - make $(corpus) : $(seed_files) : make-corpus ; + make $(corpus) : $(seed_files) : make-corpus : $(.make-corpus-script) ; make $(min_corpus) : : common.MkDir ; # Build the fuzzer