From 33b98002c23eedaf3cc7af2e0aeada8e382b4ed1 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Mon, 3 Feb 2025 11:45:51 +0100 Subject: [PATCH] Fix config summary CPU subarch line Was likely broken by abc888c75bf145bb5da2680b7943f1ea3af83202 Change-Id: Ic9ed27255f105272ef60c3a91f3d934c70b91b8b Reviewed-by: Joerg Bornemann (cherry picked from commit a522a0595bc3e908efc7ec70c9d7120c4d5c599b) Reviewed-by: Qt Cherry-pick Bot --- cmake/QtBaseConfigureTests.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/QtBaseConfigureTests.cmake b/cmake/QtBaseConfigureTests.cmake index 60a44c40bb0..0ed9f85e594 100644 --- a/cmake/QtBaseConfigureTests.cmake +++ b/cmake/QtBaseConfigureTests.cmake @@ -187,7 +187,7 @@ function(qt_run_config_test_architecture) list(APPEND QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT TEST_buildAbi) set(QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT ${QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT} CACHE INTERNAL "Test variables that should be exported") - list(JOIN _sub_architecture " " subarch_summary) + list(JOIN sub_architecture_${first_arch} " " subarch_summary) set_property(GLOBAL PROPERTY qt_configure_subarch_summary "${subarch_summary}") endfunction()