https://git.reactos.org/?p=reactos.git;a=commitdiff;h=80b54b802611647b8da526...
commit 80b54b802611647b8da526bd917e04804de6413f Author: Serge Gautherie reactos-git_serge_171003@gautherie.fr AuthorDate: Mon May 24 08:56:17 2021 +0200 Commit: Stanislav Motylkov x86corez@gmail.com CommitDate: Wed Jun 2 13:26:08 2021 +0300
[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.")