From dde1b1c48195744dd5273e4b58cac827febb4acb Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Mon, 29 Jan 2018 14:41:58 -0500 Subject: [PATCH] zephyr: fix the build Since the Kconfig file was moved in 51a09210063 ("zephyr: Move Kconfig file to boot/zephyr"), the CMakeLists.txt reference to it needs updating. Signed-off-by: Marti Bolivar --- boot/zephyr/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/boot/zephyr/CMakeLists.txt b/boot/zephyr/CMakeLists.txt index d9f88839..b57cb171 100644 --- a/boot/zephyr/CMakeLists.txt +++ b/boot/zephyr/CMakeLists.txt @@ -6,8 +6,7 @@ cmake_minimum_required(VERSION 3.8.2) - -set(KCONFIG_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../../Kconfig) +set(KCONFIG_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/Kconfig) ######################## # Configuration choices.