From 949ff43c901691b4e97b2eb1c17cbc9e9558d849 Mon Sep 17 00:00:00 2001 From: Eduardo Montoya Date: Tue, 1 Feb 2022 11:42:48 +0100 Subject: [PATCH] openthread: fix building from libraries The path for nrf_security headers has changed. Signed-off-by: Eduardo Montoya --- openthread/cmake/extensions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openthread/cmake/extensions.cmake b/openthread/cmake/extensions.cmake index ce05442fe9..81b99c8a48 100644 --- a/openthread/cmake/extensions.cmake +++ b/openthread/cmake/extensions.cmake @@ -98,7 +98,7 @@ function(get_active_mbedtls_configs_from_file fileName returnMatch1List) endfunction() function(check_openthread_dependencies ot_lib_nrf_security_mbedtls_config_file) - set(nrf_security_mbedtls_config_file "${CMAKE_CURRENT_BINARY_DIR}/../nrf_security/include/${CONFIG_MBEDTLS_CFG_FILE}") + set(nrf_security_mbedtls_config_file "${CMAKE_CURRENT_BINARY_DIR}/../nrf_security/src/include/generated/${CONFIG_MBEDTLS_CFG_FILE}") get_active_mbedtls_configs_from_file(${nrf_security_mbedtls_config_file} mbedtls_conf_list) get_active_mbedtls_configs_from_file(${ot_lib_nrf_security_mbedtls_config_file} ot_mbedtls_conf_list)