diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2015-11-15 09:26:10 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2015-11-15 09:26:10 +0200 |
commit | 990b7223ebfae4161ba4bf7ef81094f2317a665b (patch) | |
tree | 7638f543d59b8d321f2b3ed8880e36243494cbab /tests/anonymous_oneof | |
parent | c201f368c592508e8f2289c3f0f19e681db153a3 (diff) |
Second fix for -pedantic build issue in tests
Diffstat (limited to 'tests/anonymous_oneof')
-rw-r--r-- | tests/anonymous_oneof/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/anonymous_oneof/SConscript b/tests/anonymous_oneof/SConscript index 051c772f..10672287 100644 --- a/tests/anonymous_oneof/SConscript +++ b/tests/anonymous_oneof/SConscript @@ -16,7 +16,8 @@ if env.GetOption('clean') or (match and (version[0] > 2 or (version[0] == 2 and # Anonymous oneofs are supported by clang and gcc if 'clang' in env['CC'] or 'gcc' in env['CC']: env2 = env.Clone() - env2['CFLAGS'].remove('-pedantic') + if '-pedantic' in env2['CFLAGS']: + env2['CFLAGS'].remove('-pedantic') env2.NanopbProto('oneof') dec = env2.Program(['decode_oneof.c', |