Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Jan 2020 16:43:02 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r357084 - head/secure/caroot
Message-ID:  <202001241643.00OGh274042198@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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'
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001241643.00OGh274042198>