Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBobby Powers <bobbypowers@gmail.com>2010-11-20 07:54:47 (GMT)
committer Bobby Powers <bobbypowers@gmail.com>2010-11-20 07:54:47 (GMT)
commit08af0be860ad3b806c394b0c911849fe086bc4d2 (patch)
tree8d1ad47404ca6bee07a034d696dbc43cdc20c5d4
parent99c79eeb14ed668d1f0d5a7306eb7894dd2ce7ae (diff)
build: remove -W warning, is the same thing as -WextraHEADmaster
http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html says: This option used to be called -W. The older name is still supported, but the newer name is more descriptive.
-rw-r--r--nss/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/Makefile b/nss/Makefile
index c4ff2ea..f16609e 100644
--- a/nss/Makefile
+++ b/nss/Makefile
@@ -1,6 +1,6 @@
WARNFLAGS = \
- -W -Wformat -Wall -Wundef -Wpointer-arith -Wcast-qual \
+ -Wformat -Wall -Wundef -Wpointer-arith -Wcast-qual \
-Wcast-align -Wwrite-strings -Wsign-compare \
-Wmissing-noreturn \
-Wextra -Wstrict-aliasing=2 \