mesonbuild/meson
View on GitHubconfigure_file(): allow more than one substitution per string
Open
#1,864 opened on May 29, 2017
enhancementgeneratorshelp wanted
Description
this currently doesn't work:
configure_file(
...
command : [ 'sh', '-c', '... "@INPUT@" > "@OUTPUT@"' ],
)
The problem is that mesonlib.substitute_values() does the substition using if..elif instead of if..if.