Previously if a user tried to pass a command line build option that contained a '%' character the command line parser assumed that there was string interpolation to be done. As there is no sense in such a scenario no code provides any input for the interpolation. This then leads to a failure. In this commit we specifically override the defaults in ConfigParser and set interpolation to None, which disables command line build option interpolation. Fixes #6157pull/6183/head
parent
2a73517e08
commit
07389e23bc
3 changed files with 7 additions and 1 deletions
@ -1 +1,2 @@ |
||||
option('set_sub_opt', type : 'boolean', value : false) |
||||
option('set_percent_opt', type : 'string', value: 'not_set') |
||||
|
Loading…
Reference in new issue