svn commit: r357084 - head/secure/caroot

Kyle Evans kevans at FreeBSD.org
Fri Jan 24 16:43:02 UTC 2020


Author: kevans
Date: Fri Jan 24 16:43:02 2020
New Revision: 357084
URL: https://svnweb.freebsd.org/changeset/base/357084

Log:
  caroot: use bsd.obj.mk, not bsd.prog.mk
  
  This directory stages certdata into .OBJDIR and processes it, but does not
  actually build a prog-shaped object; bsd.obj.mk provides the minimal support
  that we actually need, an .OBJDIR and descent into subdirs. This is
  admittedly the nittiest of nits.

Modified:
  head/secure/caroot/Makefile

Modified: head/secure/caroot/Makefile
==============================================================================
--- head/secure/caroot/Makefile	Fri Jan 24 16:08:06 2020	(r357083)
+++ head/secure/caroot/Makefile	Fri Jan 24 16:43:02 2020	(r357084)
@@ -7,10 +7,9 @@ CLEANFILES+=	certdata.txt
 SUBDIR+=	trusted
 SUBDIR+=	blacklisted
 
-.include <bsd.prog.mk>
+.include <bsd.obj.mk>
 
 # To be used by secteam@ to update the trusted certificates
-
 fetchcerts: .PHONY
 	fetch --no-sslv3 --no-tlsv1 -o certdata.txt 'https://hg.mozilla.org/projects/nss/raw-file/tip/lib/ckfw/builtins/certdata.txt'
 


More information about the svn-src-head mailing list