From 875b29c3e3f89872d55b2ca8078aff3d146329d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Fri, 24 Aug 2018 14:00:32 +0200 Subject: [PATCH] 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. --- fuzz/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/Makefile.in b/fuzz/Makefile.in index ccefcf3a98..6757f17910 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}