From: Andre Noll Date: Tue, 17 May 2011 11:55:27 +0000 (+0200) Subject: Makefile: Place -Wno-sign-compare _after_ -Wall. X-Git-Tag: v0.4.8~27^2~4 X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=1548a6c606be5f759f3ccc94b901c3a2db889dbe;p=paraslash.git Makefile: Place -Wno-sign-compare _after_ -Wall. Without this, clang still complains about comparisons between signed and unsigned variables which produces lots of noise. --- diff --git a/Makefile.in b/Makefile.in index 7e6287e0..7a23832b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -19,9 +19,9 @@ codename := nested assignment GIT_VERSION := $(shell ./GIT-VERSION-GEN git-version.h) -DEBUG_CPPFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W +DEBUG_CPPFLAGS += -g -Wunused -Wundef -W DEBUG_CPPFLAGS += -Wredundant-decls -DEBUG_CPPFLAGS += -Wall +DEBUG_CPPFLAGS += -Wall -Wno-sign-compare DEBUG_CPPFLAGS += -Wformat-security DEBUG_CPPFLAGS += -Wmissing-format-attribute # produces false positives