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 Michael Stone <michael@laptop.org>2010-12-19 00:09:33 (GMT)
commitb290000d6c460f7597f93c75f9882027b88fdfcf (patch)
tree9147ed9c0da843f1ef5f83b010cb1573f86f1790
parent11afc83ff0d2558210065539ba7675f639b9fa04 (diff)
build: remove -W warning, is the same thing as -Wextra
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 \