aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2017-07-26 20:47:40 +0200
committerJan-Simon Möller <jsmoeller@linuxfoundation.org>2017-07-26 20:47:40 +0200
commitdee58363ddb98f8e63239035f1a8f1ab151c5e96 (patch)
tree5e71808075402234f298003e52d3850dd19af590
parent8f3bc0b6f25a5560a308078342a8ed3cc6dba13f (diff)
Fix logic bug in addition of -DKERNEL_MINIMAL_VERSION
-DKERNEL_MINIMAL_VERSION_OK was always set. Move it into else case. Change-Id: Icc7e0982584bce6134611a7724e9d1ef36602360 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
-rw-r--r--cmake/cmake.d/04-build_options.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/cmake.d/04-build_options.cmake b/cmake/cmake.d/04-build_options.cmake
index bc14ee6..18a1b17 100644
--- a/cmake/cmake.d/04-build_options.cmake
+++ b/cmake/cmake.d/04-build_options.cmake
@@ -48,8 +48,9 @@ if (kernel_minimal_version)
message (STATUS "${Cyan}-- Check kernel_minimal_version (found kernel version ${KERNEL_VERSION})${ColourReset}")
if (KERNEL_VERSION VERSION_LESS ${kernel_minimal_version})
message(WARNING "${Yellow}**** Warning: Some feature(s) require at least ${kernel_minimal_version}. Please use a recent kernel or source your SDK environment then clean and reconfigure your CMake project.${ColourReset}")
+ else (KERNEL_VERSION VERSION_LESS ${kernel_minimal_version})
+ add_definitions(-DKERNEL_MINIMAL_VERSION_OK)
endif (KERNEL_VERSION VERSION_LESS ${kernel_minimal_version})
- add_definitions(-DKERNEL_MINIMAL_VERSION_OK)
endif(kernel_minimal_version)
INCLUDE(FindPkgConfig)