We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 325da03 commit bd9eab2Copy full SHA for bd9eab2
fuzzing/Jamfile
@@ -30,7 +30,7 @@ rule make-corpus ( target : sources + : properties * )
30
}
31
actions make-corpus
32
{
33
- "$(PYTHON:E=python)" "$(RUNNER)" $(<) $(>)
+ "$(PYTHON:E=python)" "$(RUNNER)" "$(<)" "$(>)"
34
35
toolset.flags $(__name__).make-corpus PYTHON <python.interpreter> ;
36
@@ -43,7 +43,7 @@ for local fuzzer in $(all_fuzzers)
43
local seed_files = [ glob "$(seed_corpus)/*" ] ;
44
45
# Create the output corpus directories
46
- make $(corpus) : $(seed_files) : make-corpus ;
+ make $(corpus) : $(seed_files) : make-corpus : <dependency>$(.make-corpus-script) ;
47
make $(min_corpus) : : common.MkDir ;
48
49
# Build the fuzzer
0 commit comments