From 9a47ee00fa71a53e4542a303971b4f85a8f54406 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20Amundsen?= Date: Fri, 3 May 2024 12:01:17 +0200 Subject: [PATCH] sysbuild: cmake: fix incorrect function name in error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The name in the error message does not match the function name. Signed-off-by: HÃ¥kon Amundsen --- share/sysbuild/cmake/modules/sysbuild_extensions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/sysbuild/cmake/modules/sysbuild_extensions.cmake b/share/sysbuild/cmake/modules/sysbuild_extensions.cmake index 3f3d409922a..ce0af2fe7b3 100644 --- a/share/sysbuild/cmake/modules/sysbuild_extensions.cmake +++ b/share/sysbuild/cmake/modules/sysbuild_extensions.cmake @@ -597,7 +597,7 @@ function(sysbuild_cache_set) return() elseif(VARS_REMOVE_DUPLICATES AND NOT VARS_APPEND) message(FATAL_ERROR - "sysbuild_set(VAR APPEND REMOVE_DUPLICATES ...) missing required APPEND option") + "sysbuild_cache_set(VAR APPEND REMOVE_DUPLICATES ...) missing required APPEND option") endif() get_property(var_type CACHE ${VARS_VAR} PROPERTY TYPE)