]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix line continuation in fuzz/Makefile.in
authorMichał Kępień <michal@isc.org>
Fri, 24 Aug 2018 12:00:32 +0000 (14:00 +0200)
committerMichał Kępień <michal@isc.org>
Fri, 24 Aug 2018 12:00:32 +0000 (14:00 +0200)
Add a missing semicolon to prevent "make test" run from the top-level
directory from failing even when all system and unit tests succeed due
to "(cd fuzz && ${MAKE} check)" returning a non-zero exit code.

fuzz/Makefile.in

index ccefcf3a9843bec20df69350d19fe1da1dee1bd1..6757f17910e83e20456cda3cb27f3270dad50946 100644 (file)
@@ -30,7 +30,7 @@ dns_name_fromtext_target@EXEEXT@: dns_name_fromtext_target.@O@ main.@O@ ${ISCDEP
 
 check: ${TARGETS}
        for fuzzer in ${TARGETS}; do \
-               ./$${fuzzer} \
+               ./$${fuzzer} \
        done
 
 oss-fuzz: ${TARGETS}