svn commit: r301403 - head

Bryan Drewery bdrewery at FreeBSD.org
Sat Jun 4 17:38:18 UTC 2016


Author: bdrewery
Date: Sat Jun  4 17:38:17 2016
New Revision: 301403
URL: https://svnweb.freebsd.org/changeset/base/301403

Log:
  Fix incorrect logic in r301394.
  
  Reported by:	Mark Millard

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Sat Jun  4 17:37:25 2016	(r301402)
+++ head/Makefile.inc1	Sat Jun  4 17:38:17 2016	(r301403)
@@ -129,7 +129,7 @@ MK_GCC_BOOTSTRAP=	no
 # passed along rather than trying to run cc from the restricted
 # STRICTTMPPATH.
 .if ${MK_CLANG_BOOTSTRAP} == "no" && ${MK_GCC_BOOTSTRAP} == "no"
-.if defined(X_COMPILER_TYPE)
+.if !defined(X_COMPILER_TYPE)
 CROSSENV+=	COMPILER_VERSION=${COMPILER_VERSION} \
 		COMPILER_TYPE=${COMPILER_TYPE} \
 		COMPILER_FREEBSD_VERSION=${COMPILER_FREEBSD_VERSION}


More information about the svn-src-head mailing list