From 5850687875e15ee8f6605ca963aba9771f25140d Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 30 Jun 2016 13:10:58 +0800 Subject: [PATCH] cmake: use selinux/devel/Makefile for building selinux policy was using selinux/devel/include/Makefile, which was wrong. Signed-off-by: Kefu Chai --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index acd4b38144986..9f549600f52c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -367,7 +367,7 @@ find_package(Threads REQUIRED) option(WITH_SELINUX "build SELinux policy" OFF) if(WITH_SELINUX) - find_file(SELINUX_MAKEFILE selinux/devel/include/Makefile + find_file(SELINUX_MAKEFILE selinux/devel/Makefile PATH /usr/share) if(NOT SELINUX_MAKEFILE) message(FATAL_ERROR "Can't find selinux's Makefile") -- 2.39.5