Re: [PATCH] tests/tcg: Fix some targets default cross compiler path

2021-10-23 Thread Philippe Mathieu-Daudé
On Sat, Oct 23, 2021 at 7:47 PM Alex Bennée wrote: > Philippe Mathieu-Daudé writes: > > > We do not want a shell command substitution, but a parameter > > substitution (with assignment). Replace $() -> ${}, otherwise > > the expanded command return an empty string and the $cross_cc > > variable i

Re: [PATCH] tests/tcg: Fix some targets default cross compiler path

2021-10-23 Thread Alex Bennée
Philippe Mathieu-Daudé writes: > We do not want a shell command substitution, but a parameter > substitution (with assignment). Replace $() -> ${}, otherwise > the expanded command return an empty string and the $cross_cc > variable is not set. Queued to testing/next, thanks. -- Alex Bennée

[PATCH] tests/tcg: Fix some targets default cross compiler path

2021-10-23 Thread Philippe Mathieu-Daudé
We do not want a shell command substitution, but a parameter substitution (with assignment). Replace $() -> ${}, otherwise the expanded command return an empty string and the $cross_cc variable is not set. Fixes: 634ef789f8e ("tests/tcg: add more default compilers to configure.sh") Signed-off-by: