mirror of
https://github.com/reactos/reactos.git
synced 2024-11-24 12:03:31 +08:00
[BOOT] CMakeLists.txt: Compare ARCH to arm64, not aarch64
This aarch64 was introduced first, but arm64 was preferred everywhere else since then. CORE-17518
This commit is contained in:
parent
7e43c2610d
commit
80b54b8026
@ -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.")
|
||||
|
Loading…
Reference in New Issue
Block a user