Date: Tue, 28 Jan 2020 02:58:39 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r357192 - in stable: 11/secure/caroot 12/secure/caroot Message-ID: <202001280258.00S2wdDM052993@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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/11/secure/caroot/Makefile Directory Properties: stable/11/ (props changed) Changes in other areas also in this revision: Modified: stable/12/secure/caroot/Makefile Directory Properties: stable/12/ (props changed) Modified: stable/11/secure/caroot/Makefile ============================================================================== --- stable/11/secure/caroot/Makefile Tue Jan 28 02:42:33 2020 (r357191) +++ stable/11/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'
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001280258.00S2wdDM052993>