From: Michał Kępień Date: Fri, 24 Aug 2018 12:00:32 +0000 (+0200) Subject: Fix line continuation in fuzz/Makefile.in X-Git-Tag: v9.13.3~39^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=875b29c3e3f89872d55b2ca8078aff3d146329d7;p=thirdparty%2Fbind9.git Fix line continuation in fuzz/Makefile.in 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. --- diff --git a/fuzz/Makefile.in b/fuzz/Makefile.in index ccefcf3a984..6757f17910e 100644 --- a/fuzz/Makefile.in +++ b/fuzz/Makefile.in @@ -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}