META MODE: Always define HOST_*, even if not using them.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Bryan Drewery 2015-12-01 00:53:17 +00:00
parent 6ca6c445fd
commit c7f8dda118
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=291549

View File

@ -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