Re: [PATCH 5/7] configure: Remove use of backtick `...` syntax

2022-09-22 Thread Peter Maydell
On Tue, 30 Aug 2022 at 13:13, Philippe Mathieu-Daudé wrote: > > On 25/8/22 17:07, Peter Maydell wrote: > > There's only one place in configure where we use `...` to execute a > > command and capture the result. Switch to $() to match the rest of > > the script. This silences a shellcheck

Re: [PATCH 5/7] configure: Remove use of backtick `...` syntax

2022-08-30 Thread Philippe Mathieu-Daudé via
On 25/8/22 17:07, Peter Maydell wrote: There's only one place in configure where we use `...` to execute a command and capture the result. Switch to $() to match the rest of the script. This silences a shellcheck warning. Signed-off-by: Peter Maydell --- configure | 2 +- 1 file changed, 1

[PATCH 5/7] configure: Remove use of backtick `...` syntax

2022-08-25 Thread Peter Maydell
There's only one place in configure where we use `...` to execute a command and capture the result. Switch to $() to match the rest of the script. This silences a shellcheck warning. Signed-off-by: Peter Maydell --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git