svn commit: r246249 - stable/9/share/mk

Dimitry Andric dim at FreeBSD.org
Sat Feb 2 12:08:28 UTC 2013


Author: dim
Date: Sat Feb  2 12:08:28 2013
New Revision: 246249
URL: http://svnweb.freebsd.org/changeset/base/246249

Log:
  MFC r246131:
  
  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".

Modified:
  stable/9/share/mk/bsd.own.mk
Directory Properties:
  stable/9/share/mk/   (props changed)

Modified: stable/9/share/mk/bsd.own.mk
==============================================================================
--- stable/9/share/mk/bsd.own.mk	Sat Feb  2 12:04:32 2013	(r246248)
+++ stable/9/share/mk/bsd.own.mk	Sat Feb  2 12:08:28 2013	(r246249)
@@ -531,10 +531,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
@@ -581,6 +577,7 @@ MK_GDB:=	no
 .endif
 
 .if ${MK_CLANG} == "no"
+MK_CLANG_EXTRAS:= no
 MK_CLANG_IS_CC:= no
 .endif
 


More information about the svn-src-stable-9 mailing list