aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2020-05-10 20:28:38 +0000
committerKyle Evans <kevans@FreeBSD.org>2020-05-10 20:28:38 +0000
commita93817e04fd5b0dd8a1df90a98f729a2b90adef6 (patch)
tree515b14de4a399881983a276a42ac604c57e3f760 /Makefile.inc1
parent81962477fc77a31d5eddb58acb15d4c1ce29e704 (diff)
downloadsrc-a93817e04fd5b0dd8a1df90a98f729a2b90adef6.tar.gz
src-a93817e04fd5b0dd8a1df90a98f729a2b90adef6.zip
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
Notes
Notes: svn path=/head/; revision=360882
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc12
1 files changed, 1 insertions, 1 deletions
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