From 028f9ded5b7b97292fc29f27d5b3973c53778df8 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Thu, 11 Aug 2011 14:32:45 +0000 Subject: [PATCH] scons: place warning modifiers directly after -Wall for clarity --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index f0436c174..c68fdb48f 100644 --- a/SConstruct +++ b/SConstruct @@ -1297,7 +1297,7 @@ if not preconfigured: env.Append(CXXFLAGS = common_cxx_flags + '-O %s' % ndebug_flags) else: # Common flags for GCC. - gcc_cxx_flags = '-ansi -Wall %s %s -ftemplate-depth-200 %s' % (pthread, env['WARNING_CXXFLAGS'], common_cxx_flags) + gcc_cxx_flags = '-ansi -Wall %s %s -ftemplate-depth-200 %s' % (env['WARNING_CXXFLAGS'], pthread, common_cxx_flags) if env['DEBUG']: env.Append(CXXFLAGS = gcc_cxx_flags + '-O0 -fno-inline %s' % debug_flags) else: