From 43595d21e49f0204d5b9fdece492687e8ad36245 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Wed, 7 Apr 2004 11:09:50 +0000 Subject: [PATCH] Removed the -W warning flag so 'unnecessary' warnings are not shown. We should first get everything to compile cleanly with -Wall, after that we can enable more warnings. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 7ba53d4bf60..77c8c351370 100644 --- a/SConstruct +++ b/SConstruct @@ -43,7 +43,7 @@ if sys.platform == 'linux2' or sys.platform == 'linux-i386': extra_flags = ['-pipe', '-fPIC', '-funsigned-char'] cxxflags = [] defines = [] - warn_flags = ['-Wall', '-W'] + warn_flags = ['-Wall'] window_system = 'X11' platform_libs = ['m', 'util', 'stdc++'] platform_libpath = []