cmake: fix typo of architecture used in binary artifact (#455)

This commit is contained in:
Anonymous Maarten 2025-06-30 00:06:21 +00:00 committed by GitHub
parent 79462824e8
commit a258a89b1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -627,7 +627,8 @@ else()
include(GNUInstallDirs)
endif()
string(REPLACE ";" "-" ISLE_CPUS_STRING "${ISLE_CPU}")
string(REPLACE ";" "-" ISLE_CPUS_STRING "${ISLE_CPUS}")
string(TOLOWER "${ISLE_CPUS_STRING}" ISLE_CPUS_STRING)
set(ISLE_PACKAGE_NAME "${CMAKE_SYSTEM_NAME}-${ISLE_CPUS_STRING}" CACHE STRING "Platform name of the package")
if(BUILD_SHARED_LIBS)
list(APPEND install_extra_targets lego1)