Commit 46063a1657c4 ("cmake: Find uci.h") introduced a check against libubus.h but mountd actually uses uci.h, so fix that.
Fixes: 46063a1657c4 ("cmake: Find uci.h") Signed-off-by: Florian Fainelli <f.faine...@gmail.com> --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b37d26c2e737..79aa852355f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 2.6) PROJECT(mountd C) ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations) -FIND_PATH(ubus_include_dir libubus.h) -INCLUDE_DIRECTORIES(${ubus_include_dir}) +FIND_PATH(uci_include_dir uci.h) +INCLUDE_DIRECTORIES(${uci_include_dir}) SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") -- 2.9.3 _______________________________________________ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev