Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Dec 2011 23:13:57 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r228551 - head/share/mk
Message-ID:  <201112152313.pBFNDved075022@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112152313.pBFNDved075022>