cmake: fix typo of architecture used in binary artifact

This commit is contained in:
Anonymous Maarten 2025-06-30 01:48:05 +02:00
parent 79462824e8
commit ab81892880

View File

@ -627,7 +627,8 @@ else()
include(GNUInstallDirs) include(GNUInstallDirs)
endif() 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") set(ISLE_PACKAGE_NAME "${CMAKE_SYSTEM_NAME}-${ISLE_CPUS_STRING}" CACHE STRING "Platform name of the package")
if(BUILD_SHARED_LIBS) if(BUILD_SHARED_LIBS)
list(APPEND install_extra_targets lego1) list(APPEND install_extra_targets lego1)