]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
Makefile: Place -Wno-sign-compare _after_ -Wall.
authorAndre Noll <maan@systemlinux.org>
Tue, 17 May 2011 11:55:27 +0000 (13:55 +0200)
committerAndre Noll <maan@systemlinux.org>
Wed, 6 Jul 2011 08:05:06 +0000 (10:05 +0200)
Without this, clang still complains about comparisons between
signed and unsigned variables which produces lots of noise.

Makefile.in

index 7e6287e0d0ff72e1e6842535d8f665db70068e0b..7a23832b124b8b09a99d43e10398bf764a303cc3 100644 (file)
@@ -19,9 +19,9 @@ codename := nested assignment
 
 GIT_VERSION := $(shell ./GIT-VERSION-GEN git-version.h)
 
 
 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 += -Wredundant-decls
-DEBUG_CPPFLAGS += -Wall
+DEBUG_CPPFLAGS += -Wall -Wno-sign-compare
 DEBUG_CPPFLAGS += -Wformat-security
 DEBUG_CPPFLAGS += -Wmissing-format-attribute
 # produces false positives
 DEBUG_CPPFLAGS += -Wformat-security
 DEBUG_CPPFLAGS += -Wmissing-format-attribute
 # produces false positives