From 448139734e0541bc08f6701782972a75ceba29f6 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Mon, 18 Jan 2021 23:15:15 -0800 Subject: [PATCH] Fixes for linux arm64 support (again) --- tools/batools/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/batools/build.py b/tools/batools/build.py index 20aa4338..77e2727f 100644 --- a/tools/batools/build.py +++ b/tools/batools/build.py @@ -487,7 +487,7 @@ def get_current_prefab_platform(wsl_gives_windows: bool = True) -> str: if machine == 'x86_64': return 'linux_x86_64' - if machine == 'arm64': + if machine == 'aarch64': return 'linux_arm64' raise RuntimeError(f'make_prefab: unsupported linux machine type:' f' {machine}.')