Re: [PATCH] target/hexagon/idef-parser/prepare: use env to invoke bash

2023-12-25 Thread Samuel Tardieu
Michael Tokarev writes: -#!/bin/bash +#!/usr/bin/env bash What's the reason for this indirection? bash has been /bin/bash for decades, it is used this way in many other places in qemu code and in other projects. Yes I know about current move /bin => /usr/bin etc, but the thing is that t

Re: [PATCH] target/hexagon/idef-parser/prepare: use env to invoke bash

2023-12-25 Thread Stefan Weil via
Am 25.12.23 um 09:05 schrieb Michael Tokarev: 23.11.2023 23:57, Samuel Tardieu : This file is the only one involved in the compilation process which still uses the /bin/bash path. Signed-off-by: Samuel Tardieu ---   target/hexagon/idef-parser/prepare | 2 +-   1 file changed, 1 insertion(+), 1

Re: [PATCH] target/hexagon/idef-parser/prepare: use env to invoke bash

2023-12-25 Thread Michael Tokarev
23.11.2023 23:57, Samuel Tardieu : This file is the only one involved in the compilation process which still uses the /bin/bash path. Signed-off-by: Samuel Tardieu --- target/hexagon/idef-parser/prepare | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/hexagon/idef-p

Re: [PATCH] target/hexagon/idef-parser/prepare: use env to invoke bash

2023-11-28 Thread Philippe Mathieu-Daudé
On 23/11/23 22:15, Samuel Tardieu wrote: This file is the only one involved in the compilation process which still uses the /bin/bash path. Signed-off-by: Samuel Tardieu --- target/hexagon/idef-parser/prepare | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Patch queued, thanks! Phil

Re: [PATCH] target/hexagon/idef-parser/prepare: use env to invoke bash

2023-11-24 Thread Anton Johansson via
On 23/11/23, Samuel Tardieu wrote: > This file is the only one involved in the compilation process which > still uses the /bin/bash path. > > Signed-off-by: Samuel Tardieu > --- > target/hexagon/idef-parser/prepare | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/target/

[PATCH] target/hexagon/idef-parser/prepare: use env to invoke bash

2023-11-23 Thread Samuel Tardieu
This file is the only one involved in the compilation process which still uses the /bin/bash path. Signed-off-by: Samuel Tardieu --- target/hexagon/idef-parser/prepare | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/hexagon/idef-parser/prepare b/target/hexagon/idef-pa

Re: [PATCH] target/hexagon/idef-parser/prepare: use env to invoke bash

2023-11-23 Thread Philippe Mathieu-Daudé
On 23/11/23 22:15, Samuel Tardieu wrote: This file is the only one involved in the compilation process which still uses the /bin/bash path. Signed-off-by: Samuel Tardieu --- target/hexagon/idef-parser/prepare | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Philippe Mathi