Re: [PATCH] Makefile: ignore long options

2021-07-24 Thread Peter Maydell
On Sat, 24 Jul 2021 at 07:16, Alexey Neyman wrote: > > Patch ping... Ccing Paolo as author of this bit of code... > On 7/21/21 9:05 PM, Alexey Neyman wrote: > > When searching for options like -n in MAKEFLAGS, current code may result > > in a false positive match when make is invoked with long o

Re: [PATCH] Makefile: ignore long options

2021-07-23 Thread Alexey Neyman
Patch ping... On 7/21/21 9:05 PM, Alexey Neyman wrote: When searching for options like -n in MAKEFLAGS, current code may result in a false positive match when make is invoked with long options like --no-print-directory. This has been observed with certain versions of host make (e.g. 3.82) while

[PATCH] Makefile: ignore long options

2021-07-21 Thread Alexey Neyman
When searching for options like -n in MAKEFLAGS, current code may result in a false positive match when make is invoked with long options like --no-print-directory. This has been observed with certain versions of host make (e.g. 3.82) while building the Qemu package in buildroot. Filter out such l

[PATCH] Makefile: ignore long options

2021-07-21 Thread Alexey Neyman
When searching for options like -n in MAKEFLAGS, current code may result in a false positive match when make is invoked with long options like --no-print-directory. This has been observed with certain versions of host make (e.g. 3.82) while building the Qemu package in buildroot. Filter out such l