From 3dd115bb4046521986abe78bc488dfd6b95e5a6e Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Wed, 28 Sep 2016 10:16:40 -0700 Subject: [PATCH] cmake: Really look for uci.h 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 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b37d26c..79aa852 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.25.1