diff mbox series

[v2,2/2] target/hexagon: Only indent on linux

Message ID 20250402114259.21953-3-anjo@rev.ng (mailing list archive)
State New
Headers show
Series target/hexagon: Fix macOS build | expand

Commit Message

Anton Johansson April 2, 2025, 11:42 a.m. UTC
indent on macOS, installed via homebrew, doesn't support -linux. Only
run indent on linux hosts.

Signed-off-by: Anton Johansson <anjo@rev.ng>
---
 target/hexagon/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Brian Cain April 2, 2025, 4:22 p.m. UTC | #1
On 4/2/2025 6:42 AM, Anton Johansson wrote:
> indent on macOS, installed via homebrew, doesn't support -linux. Only
> run indent on linux hosts.
>
> Signed-off-by: Anton Johansson <anjo@rev.ng>
> ---


Reviewed-by: Brian Cain <brian.cain@oss.qualcomm.com>


>   target/hexagon/meson.build | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/target/hexagon/meson.build b/target/hexagon/meson.build
> index abcf00ca1f..d26787a9b9 100644
> --- a/target/hexagon/meson.build
> +++ b/target/hexagon/meson.build
> @@ -324,7 +324,7 @@ if idef_parser_enabled and 'hexagon-linux-user' in target_dirs
>       )
>   
>       indent = find_program('indent', required: false)
> -    if indent.found()
> +    if indent.found() and host_os == 'linux'
>           idef_generated_tcg_c = custom_target(
>               'indent',
>               input: idef_generated_tcg[0],
diff mbox series

Patch

diff --git a/target/hexagon/meson.build b/target/hexagon/meson.build
index abcf00ca1f..d26787a9b9 100644
--- a/target/hexagon/meson.build
+++ b/target/hexagon/meson.build
@@ -324,7 +324,7 @@  if idef_parser_enabled and 'hexagon-linux-user' in target_dirs
     )
 
     indent = find_program('indent', required: false)
-    if indent.found()
+    if indent.found() and host_os == 'linux'
         idef_generated_tcg_c = custom_target(
             'indent',
             input: idef_generated_tcg[0],