svn commit: r291549 - head/share/mk
Bryan Drewery
bdrewery at FreeBSD.org
Tue Dec 1 00:53:18 UTC 2015
Author: bdrewery
Date: Tue Dec 1 00:53:17 2015
New Revision: 291549
URL: https://svnweb.freebsd.org/changeset/base/291549
Log:
META MODE: Always define HOST_*, even if not using them.
Sponsored by: EMC / Isilon Storage Division
Modified:
head/share/mk/local.meta.sys.mk
Modified: head/share/mk/local.meta.sys.mk
==============================================================================
--- head/share/mk/local.meta.sys.mk Tue Dec 1 00:53:03 2015 (r291548)
+++ head/share/mk/local.meta.sys.mk Tue Dec 1 00:53:17 2015 (r291549)
@@ -225,12 +225,13 @@ CPP?= ${HOST_CPP}
.endif
.endif
-.if ${MACHINE} == "host"
HOST_CC?= /usr/bin/cc
-CC= ${HOST_CC}
HOST_CXX?= /usr/bin/c++
-CXX= ${HOST_CXX}
HOST_CPP?= /usr/bin/cpp
+
+.if ${MACHINE} == "host"
+CC= ${HOST_CC}
+CXX= ${HOST_CXX}
CPP= ${HOST_CPP}
.endif
More information about the svn-src-all
mailing list