From 93e7fcce23fa8378e1364793a6001db073ea2679 Mon Sep 17 00:00:00 2001 From: Joakim Andersson Date: Fri, 14 Jul 2023 13:31:37 +0200 Subject: [PATCH] tfm: Fix TF-M with Initial Attestation compilation error Fix TF-M with Initial Attestation enabled resulting in a compilation error for a missing path. This is a regression from: c6154d55903cd70dba4bf794e816dcd077fdc10b Signed-off-by: Joakim Andersson --- modules/tfm/tfm/boards/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/tfm/tfm/boards/CMakeLists.txt b/modules/tfm/tfm/boards/CMakeLists.txt index 3beb3214798..fcdeae01812 100644 --- a/modules/tfm/tfm/boards/CMakeLists.txt +++ b/modules/tfm/tfm/boards/CMakeLists.txt @@ -92,7 +92,7 @@ if (${TFM_PARTITION_CRYPTO}) if (${TFM_PARTITION_INITIAL_ATTESTATION}) target_sources(platform_s PRIVATE - ${NRF_DIR}/lib/identity_key/identity_key.c + ${ZEPHYR_NRF_MODULE_DIR}/lib/identity_key/identity_key.c ) endif()