Re: [PATCH v4] scripts/symlink-install-tree.py: Fix MESONINTROSPECT parsing

2024-10-29 Thread Pierrick Bouvier
On 10/29/24 03:04, Peter Maydell wrote: On Mon, 28 Oct 2024 at 19:43, Pierrick Bouvier wrote: On 10/18/24 06:08, Peter Maydell wrote: From: Akihiko Odaki The arguments in MESONINTROSPECT are quoted with shlex.quote() so it must be parsed with shlex.split(). Otherwise the script will fail i

Re: [PATCH v4] scripts/symlink-install-tree.py: Fix MESONINTROSPECT parsing

2024-10-29 Thread Peter Maydell
On Mon, 28 Oct 2024 at 19:43, Pierrick Bouvier wrote: > > On 10/18/24 06:08, Peter Maydell wrote: > > From: Akihiko Odaki > > > > The arguments in MESONINTROSPECT are quoted with shlex.quote() so it > > must be parsed with shlex.split(). Otherwise the script will fail if > > the build directory

Re: [PATCH v4] scripts/symlink-install-tree.py: Fix MESONINTROSPECT parsing

2024-10-28 Thread Pierrick Bouvier
On 10/18/24 06:08, Peter Maydell wrote: From: Akihiko Odaki The arguments in MESONINTROSPECT are quoted with shlex.quote() so it must be parsed with shlex.split(). Otherwise the script will fail if the build directory has a character like "~" in it. Note: this fix cannot be backported directl

Re: [PATCH v4] scripts/symlink-install-tree.py: Fix MESONINTROSPECT parsing

2024-10-21 Thread Christophe Lyon
Hi, Le lun. 21 oct. 2024, 19:27, Pierrick Bouvier a écrit : > On 10/18/24 06:08, Peter Maydell wrote: > > From: Akihiko Odaki > > > > The arguments in MESONINTROSPECT are quoted with shlex.quote() so it > > must be parsed with shlex.split(). Otherwise the script will fail if > > the build di

Re: [PATCH v4] scripts/symlink-install-tree.py: Fix MESONINTROSPECT parsing

2024-10-21 Thread Pierrick Bouvier
On 10/18/24 06:08, Peter Maydell wrote: From: Akihiko Odaki The arguments in MESONINTROSPECT are quoted with shlex.quote() so it must be parsed with shlex.split(). Otherwise the script will fail if the build directory has a character like "~" in it. Note: this fix cannot be backported directl

[PATCH v4] scripts/symlink-install-tree.py: Fix MESONINTROSPECT parsing

2024-10-18 Thread Peter Maydell
From: Akihiko Odaki The arguments in MESONINTROSPECT are quoted with shlex.quote() so it must be parsed with shlex.split(). Otherwise the script will fail if the build directory has a character like "~" in it. Note: this fix cannot be backported directly to any stable branch that doesn't requir