From a93817e04fd5b0dd8a1df90a98f729a2b90adef6 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Sun, 10 May 2020 20:28:38 +0000 Subject: [PATCH] buildworld: add back in missing semicolon if foo; then blah else blah; fi has a drastically different meaning than if foo; then blah; else blah; fi. Fix it. Reported by: 0mp X-MFC-With: r360833 --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index e1a8ce883fd8..40a05de601a3 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1409,7 +1409,7 @@ distributeworld installworld stageworld: _installcheck_world .PHONY # basis, otherwise we'll just mention that we're not doing it to raise # awareness. @if which certctl>/dev/null; then \ - certctl rehash \ + certctl rehash; \ else \ echo "No certctl on the host, not rehashing target -- /etc/ssl may not be populated."; \ fi