The type of quoting was changed inpull/12115/head522392e
to one that is suitable for use with cmd.exe on Windows. However, the documentation states that the type of quoting in MESONINTROSPECT is compatible with shlex.split() and elsewhere in the code, the same variable is still quoted with shlex.quote(). As mostly identified in #12148, there are a few choices: 1. Use shlex.quote() consistently and support Python but not cmd.exe. 2. Use join_args and support cmd.exe but not Python. 3. Use join_args and support splitting through the mesonbuild Python library. This commit implements the first option and reverts part of522392e
. Regression testing is implemented in #12115. Fixes #12148
parent
3c7bc8cac3
commit
10e269271d
1 changed files with 7 additions and 6 deletions
Loading…
Reference in new issue