svn commit: r357192 - in stable: 11/secure/caroot 12/secure/caroot

Kyle Evans kevans at FreeBSD.org
Tue Jan 28 02:58:40 UTC 2020


Author: kevans
Date: Tue Jan 28 02:58:39 2020
New Revision: 357192
URL: https://svnweb.freebsd.org/changeset/base/357192

Log:
  MFC r357084: 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:
  stable/12/secure/caroot/Makefile
Directory Properties:
  stable/12/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/11/secure/caroot/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/12/secure/caroot/Makefile
==============================================================================
--- stable/12/secure/caroot/Makefile	Tue Jan 28 02:42:33 2020	(r357191)
+++ stable/12/secure/caroot/Makefile	Tue Jan 28 02:58:39 2020	(r357192)
@@ -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-all mailing list