In r232322, I forgot one case where a check for MK_CLANG_IS_CC was

needed, in sys/conf/kern.pre.mk.  Add it now.

MFC after:	2 weeks
This commit is contained in:
Dimitry Andric 2012-03-04 00:42:18 +00:00
parent 2651e350d3
commit ef78eb0b8b

View File

@ -101,7 +101,7 @@ WERROR?= -Werror
# XXX LOCORE means "don't declare C stuff" not "for locore.s".
ASM_CFLAGS= -x assembler-with-cpp -DLOCORE ${CFLAGS}
.if ${CC:T:Mclang} == "clang"
.if ${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang"
CLANG_NO_IAS= -no-integrated-as
.endif