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:
dim 2012-03-04 00:42:18 +00:00
parent ae227ddf7f
commit 3083b3865c

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