diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-12-03 19:30:39 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-12-29 20:26:58 +0200 |
commit | b1cb035373fc3b6888e3664ca0ca3f37a9c0e639 (patch) | |
tree | 34383aeb4a05ab1446b07965313ef0e0c8bae3f5 /tests | |
parent | 6d0e0695d01bf1823a8aae2b3ec1d488e5215b76 (diff) |
Small fix for previous
Diffstat (limited to 'tests')
-rw-r--r-- | tests/SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/SConstruct b/tests/SConstruct index 9480c82c..c1defe92 100644 --- a/tests/SConstruct +++ b/tests/SConstruct @@ -35,7 +35,7 @@ env.Append(PROTOCPATH = '#../generator') if not env.GetOption('clean'): def check_ccflags(context, flags): '''Check if given CCFLAGS are supported''' - context.Message('Checking support for CCFLAGS="%s"...' % flags) + context.Message('Checking support for CCFLAGS="%s"... ' % flags) oldflags = context.env['CCFLAGS'] context.env.Append(CCFLAGS = flags) result = context.TryCompile("int main() {return 0;}", '.c') @@ -75,7 +75,7 @@ if not env.GetOption('clean'): # Check if we can use extra strict warning flags (only with GCC) extra = '-Wcast-qual -Wlogical-op -Wconversion' extra += ' -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls' - extra += ' -Wstack-protector' + extra += ' -Wstack-protector ' if 'gcc' in env['CC']: if conf.CheckCCFLAGS(extra): conf.env.Append(CORECFLAGS = extra) |