svn commit: r360882 - head

Kyle Evans kevans at FreeBSD.org
Sun May 10 20:28:38 UTC 2020


Author: kevans
Date: Sun May 10 20:28:38 2020
New Revision: 360882
URL: https://svnweb.freebsd.org/changeset/base/360882

Log:
  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

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Sun May 10 19:00:57 2020	(r360881)
+++ head/Makefile.inc1	Sun May 10 20:28:38 2020	(r360882)
@@ -1409,7 +1409,7 @@ distributeworld installworld stageworld: _installcheck
 	# 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


More information about the svn-src-head mailing list