Re: [PATCH] meson: Fix MESONINTROSPECT parsing

2024-03-25 Thread Michael Tokarev
25.03.2024 20:23, Peter Maydell : On Sat, 12 Aug 2023 at 13:10, Akihiko Odaki wrote: ... The problem is that Meson uses a different logic for escaping arguments in MESONINTROSPECT on Windows. I'll wait till Meson maintainers figure out how MESONINTROSPECT should be used. For details, see:

Re: [PATCH] meson: Fix MESONINTROSPECT parsing

2024-03-25 Thread Peter Maydell
On Sat, 12 Aug 2023 at 13:10, Akihiko Odaki wrote: > > On 2023/08/12 15:15, Akihiko Odaki wrote: > > The arguments in MESONINTROSPECT are quoted with shlex.quote() so it > > must be parsed with shlex.split(). > > > > Fixes: cf60ccc330 ("cutils: Introduce bundle mechanism") > > Reported-by:

Re: [PATCH] meson: Fix MESONINTROSPECT parsing

2023-08-12 Thread Michael Tokarev
12.08.2023 15:09, Akihiko Odaki wrote: Please do NOT merge this. This will break Windows builds. I'm putting this patch on hold. I don't think this is something to rush about, it definitely can wait 8.2 development cycle. /mjt

Re: [PATCH] meson: Fix MESONINTROSPECT parsing

2023-08-12 Thread Akihiko Odaki
On 2023/08/12 15:15, Akihiko Odaki wrote: The arguments in MESONINTROSPECT are quoted with shlex.quote() so it must be parsed with shlex.split(). Fixes: cf60ccc330 ("cutils: Introduce bundle mechanism") Reported-by: Michael Tokarev Signed-off-by: Akihiko Odaki ---

Re: [PATCH] meson: Fix MESONINTROSPECT parsing

2023-08-12 Thread Paolo Bonzini
Please apply this patch without my intervention, I won't have access to Gitlab for a few days. Paolo Il sab 12 ago 2023, 11:16 Akihiko Odaki ha scritto: > On 2023/08/12 17:01, Michael Tokarev wrote: > > 12.08.2023 09:15, Akihiko Odaki wrote: > >> The arguments in MESONINTROSPECT are quoted

Re: [PATCH] meson: Fix MESONINTROSPECT parsing

2023-08-12 Thread Akihiko Odaki
On 2023/08/12 17:01, Michael Tokarev wrote: 12.08.2023 09:15, Akihiko Odaki wrote: The arguments in MESONINTROSPECT are quoted with shlex.quote() so it must be parsed with shlex.split(). Fixes: cf60ccc330 ("cutils: Introduce bundle mechanism") Reported-by: Michael Tokarev Signed-off-by:

Re: [PATCH] meson: Fix MESONINTROSPECT parsing

2023-08-12 Thread Philippe Mathieu-Daudé
On 12/8/23 08:15, Akihiko Odaki wrote: The arguments in MESONINTROSPECT are quoted with shlex.quote() so it must be parsed with shlex.split(). Fixes: cf60ccc330 ("cutils: Introduce bundle mechanism") Reported-by: Michael Tokarev Signed-off-by: Akihiko Odaki ---

Re: [PATCH] meson: Fix MESONINTROSPECT parsing

2023-08-12 Thread Michael Tokarev
12.08.2023 09:15, Akihiko Odaki wrote: The arguments in MESONINTROSPECT are quoted with shlex.quote() so it must be parsed with shlex.split(). Fixes: cf60ccc330 ("cutils: Introduce bundle mechanism") Reported-by: Michael Tokarev Signed-off-by: Akihiko Odaki ---

[PATCH] meson: Fix MESONINTROSPECT parsing

2023-08-12 Thread Akihiko Odaki
The arguments in MESONINTROSPECT are quoted with shlex.quote() so it must be parsed with shlex.split(). Fixes: cf60ccc330 ("cutils: Introduce bundle mechanism") Reported-by: Michael Tokarev Signed-off-by: Akihiko Odaki --- scripts/symlink-install-tree.py | 3 ++- 1 file changed, 2