svn commit: r228551 - head/share/mk

Dimitry Andric dim at FreeBSD.org
Thu Dec 15 23:13:57 UTC 2011


Author: dim
Date: Thu Dec 15 23:13:57 2011
New Revision: 228551
URL: http://svn.freebsd.org/changeset/base/228551

Log:
  Disable one more clang warning when WARNS <= 3.
  
  MFC after:	1 week

Modified:
  head/share/mk/bsd.sys.mk

Modified: head/share/mk/bsd.sys.mk
==============================================================================
--- head/share/mk/bsd.sys.mk	Thu Dec 15 23:06:46 2011	(r228550)
+++ head/share/mk/bsd.sys.mk	Thu Dec 15 23:13:57 2011	(r228551)
@@ -61,7 +61,8 @@ CWARNFLAGS	+=	-Wno-pointer-sign
 # is set to low values, these have to be disabled explicitly.
 .  if ${CC:T:Mclang} == "clang"
 .   if ${WARNS} <= 3
-CWARNFLAGS	+=	-Wno-tautological-compare -Wno-unused-value
+CWARNFLAGS	+=	-Wno-tautological-compare -Wno-unused-value\
+			-Wno-parentheses-equality
 .   endif
 .   if ${WARNS} <= 2
 CWARNFLAGS	+=	-Wno-switch-enum


More information about the svn-src-head mailing list