aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bl2/ext/mcuboot/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/bl2/ext/mcuboot/CMakeLists.txt b/bl2/ext/mcuboot/CMakeLists.txt
index ef8afe8bab..d113a92de2 100644
--- a/bl2/ext/mcuboot/CMakeLists.txt
+++ b/bl2/ext/mcuboot/CMakeLists.txt
@@ -173,7 +173,6 @@ endif()
if(NS)
add_custom_target(tfm_s_ns_signed_bin
- ALL
SOURCES tfm_s_ns_signed.bin
)
if (MCUBOOT_IMAGE_NUMBER GREATER 1)
@@ -221,5 +220,5 @@ endif()
add_custom_target(signed_images
ALL
- DEPENDS $<$<BOOL:${NS}>:tfm_s_ns_signed_bin>
+ DEPENDS $<IF:$<BOOL:${NS}>,tfm_s_ns_signed_bin,tfm_s_signed_bin>
)