Fix a problem introduced in r231057: in bsd.own.mk, move the test for

whether clang is enabled to just after the last place where it could
have been forced to "no".

MFC after:	3 days
This commit is contained in:
Dimitry Andric 2013-01-30 19:51:16 +00:00
parent ea26ed7eea
commit ce06f5f681
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=246131

View File

@ -481,10 +481,6 @@ MK_ZFS:= no
MK_CTF:= no
.endif
.if ${MK_CLANG} == "no"
MK_CLANG_EXTRAS:= no
.endif
.if ${MK_CRYPT} == "no"
MK_OPENSSL:= no
MK_OPENSSH:= no
@ -527,6 +523,7 @@ MK_GDB:= no
.endif
.if ${MK_CLANG} == "no"
MK_CLANG_EXTRAS:= no
MK_CLANG_IS_CC:= no
.endif