mesonbuild/meson
在 GitHub 查看configure_file(): allow more than one substitution per string
Open
#1,864 建立於 2017年5月29日
enhancementgeneratorshelp wanted
描述
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.