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

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
bdrewery 2015-12-01 00:53:17 +00:00
parent 1215b34965
commit ad1f06e392

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