From 80b54b802611647b8da526bd917e04804de6413f Mon Sep 17 00:00:00 2001 From: Serge Gautherie Date: Mon, 24 May 2021 08:56:17 +0200 Subject: [PATCH] [BOOT] CMakeLists.txt: Compare ARCH to arm64, not aarch64 This aarch64 was introduced first, but arm64 was preferred everywhere else since then. CORE-17518 --- boot/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/CMakeLists.txt b/boot/CMakeLists.txt index fbc839db4b0..602b8600361 100644 --- a/boot/CMakeLists.txt +++ b/boot/CMakeLists.txt @@ -9,7 +9,7 @@ elseif(ARCH STREQUAL "ia64") set(EFI_PLATFORM_ID "ia64") elseif(ARCH STREQUAL "arm") set(EFI_PLATFORM_ID "arm") -elseif(ARCH STREQUAL "aarch64") +elseif(ARCH STREQUAL "arm64") set(EFI_PLATFORM_ID "aa64") else() message(FATAL_ERROR "Unknown ARCH '" ${ARCH} "', cannot generate a valid UEFI boot filename.")