Currently, if we run "meson configure -Doption=value", meson will do a reconfigure when running "ninja build" afterwards, even if the new value is the same one that was already configured previously. To avoid this unnecessary reconfigure, let's use replace_if_different() instead of unconditionally replacing the conf file in coredata's save() function.pull/10636/head
parent
e5df70b8d3
commit
f774609b09
5 changed files with 18 additions and 3 deletions
@ -0,0 +1 @@ |
||||
project('configure same noop test') |
@ -0,0 +1,5 @@ |
||||
option( |
||||
'opt', |
||||
type : 'string', |
||||
value: '', |
||||
) |
Loading…
Reference in new issue