fix: always quote when doing list search

pull/598/head
kevin.walker 2025-11-19 21:41:49 +00:00
parent e2c1e14695
commit 6341fd11b1
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ if(NOT DEFINED CACHE{WOLFBOOT_TARGET})
CACHE INTERNAL "Target platform")
endif()
if(${WOLFBOOT_TARGET} IN_LIST ARM_TARGETS)
if("${WOLFBOOT_TARGET}" IN_LIST ARM_TARGETS)
set(ARCH ARM)
elseif(WOLFBOOT_TARGET STREQUAL "x86_64_efi")
set(ARCH x86_64)