svn commit: r306143 - releng/11.0/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Wed Sep 21 21:23:11 UTC 2016


Author: bdrewery
Date: Wed Sep 21 21:23:09 2016
New Revision: 306143
URL: https://svnweb.freebsd.org/changeset/base/306143

Log:
  Disable SYSTEM_COMPILER by default.
  
  This is a direct commit to releng/11.0.
  
  Having it enabled can lead to a situation where building
  on one system and installing on another will fail due
  to not finding cc in the OBJDIR.
  
  An actual fix will be made on head separately.
  
  PR:		212877
  Relnotes:	yes
  Sponsored by:	Dell EMC Isilon
  Approved by:	re (gjb)

Modified:
  releng/11.0/share/mk/src.opts.mk

Modified: releng/11.0/share/mk/src.opts.mk
==============================================================================
--- releng/11.0/share/mk/src.opts.mk	Wed Sep 21 20:56:10 2016	(r306142)
+++ releng/11.0/share/mk/src.opts.mk	Wed Sep 21 21:23:09 2016	(r306143)
@@ -158,7 +158,6 @@ __DEFAULT_YES_OPTIONS = \
     SOURCELESS_UCODE \
     SVNLITE \
     SYSCONS \
-    SYSTEM_COMPILER \
     TALK \
     TCP_WRAPPERS \
     TCSH \
@@ -190,6 +189,7 @@ __DEFAULT_NO_OPTIONS = \
     SHARED_TOOLCHAIN \
     SORT_THREADS \
     SVN \
+    SYSTEM_COMPILER
 
 
 #


More information about the svn-src-all mailing list