summaryrefslogtreecommitdiff
path: root/res/Makefile
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2015-03-28 12:40:49 +0000
committerMatthew Jordan <mjordan@digium.com>2015-03-28 12:40:49 +0000
commiteb70993a50c5c85b61d7b1cf9e4a7d6e5eb9a901 (patch)
tree80da36acae051eaab8cf46f1cd7efbf2ed7f0213 /res/Makefile
parentc0ff16036a6619e819db95199e619505696f5556 (diff)
clang compiler warnings: Fix -Wparantheses-equality warnings
Clang will treat ((a == b)) as a warning, as it reasonably expects that the developer may have intended to write (a == b) or ((a = b)). This patch cleans up all instances where equality, not assignment, was intended between two parantheses. Review: https://reviewboard.asterisk.org/r/4531/ ASTERISK-24917 Repoted by: dkdegroot patches: rb4531.patch submitted by dkdegroot (License 6600) ........ Merged revisions 433687 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@433688 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/Makefile')
-rw-r--r--res/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/res/Makefile b/res/Makefile
index 403863426..b98fb8e42 100644
--- a/res/Makefile
+++ b/res/Makefile
@@ -33,6 +33,9 @@ ael/ael_lex.o: _ASTCFLAGS+=-I. -Iael -Wno-unused
ael/ael.tab.o: ael/ael.tab.c ael/ael.tab.h ../include/asterisk/ael_structs.h
ael/ael.tab.o: _ASTCFLAGS+=-I. -Iael -DYYENABLE_NLS=0
+ ifneq ($(AST_CLANG_BLOCKS),)
+ _ASTCFLAGS+=-Wno-parentheses-equality
+ endif
$(if $(filter res_ais,$(EMBEDDED_MODS)),modules.link,res_ais.so): ais/clm.o ais/evt.o
ais/clm.o ais/evt.o: _ASTCFLAGS+=$(call MOD_ASTCFLAGS,res_ais)