svn commit: r325500 - head/lib/libclang_rt

Ngie Cooper ngie at FreeBSD.org
Tue Nov 7 04:56:39 UTC 2017


Author: ngie
Date: Tue Nov  7 04:55:23 2017
New Revision: 325500
URL: https://svnweb.freebsd.org/changeset/base/325500

Log:
  Use bsd.compiler.mk instead of src.opts.mk
  
  - MK_PROFILE is controlled in bsd.opts.mk, which is pulled in via bsd.own.mk,
    which is pulled in via bsd.init.mk . All upstream Makefiles which build off
    of this one use bsd.init.mk.
  - COMPILER_{TYPE,VERSION} is set via bsd.compiler.mk .
  
  This reduces the namespace pollution/complexity somewhat.
  
  MFC after:	1 week

Modified:
  head/lib/libclang_rt/Makefile.inc

Modified: head/lib/libclang_rt/Makefile.inc
==============================================================================
--- head/lib/libclang_rt/Makefile.inc	Tue Nov  7 04:26:57 2017	(r325499)
+++ head/lib/libclang_rt/Makefile.inc	Tue Nov  7 04:55:23 2017	(r325500)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-.include <src.opts.mk>
+.include <bsd.compiler.mk>
 
 .if ${MACHINE} == "arm"
 .if ${MACHINE_ARCH:Marmv[67]*} != "" && ${CPUTYPE:M*soft*} == ""


More information about the svn-src-all mailing list