mesonbuild/meson
configure_file(): allow more than one substitution per string
Fechada
#1.864 aberto em 29 de mai. de 2017
enhancementgeneratorshelp wanted
Métricas do repositório
- Stars
- (4.978 estrelas)
- Métricas de merge de PR
- (Mesclagem média 139d 13h) (51 fundiu PRs em 30d)
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.