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
This commit is contained in:
Kyle Evans 2020-05-10 20:28:38 +00:00
parent 81962477fc
commit a93817e04f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=360882

View File

@ -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