aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2018-06-27 18:20:25 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2018-06-27 18:20:25 +0200
commit51026d2f67bfea01346daceb25c91809fb87c322 (patch)
tree81d8c4c7605ad717e6d453a933393e1ae943169a
parent1f2944eea3a418ec02920673a390ed4b5d417a2b (diff)
Detect Yocto as OS distribution
When you are in a Yocto Environment there isn't os-release file, so if the Yocto env is detected then position manually the OSRELEASE variable to yocto-build. Change-Id: I10029664100bb73aa74eaa85c1a4295c4ab65428 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--cmake/common.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/common.cmake b/cmake/common.cmake
index e826bee..02ef1a4 100644
--- a/cmake/common.cmake
+++ b/cmake/common.cmake
@@ -52,7 +52,8 @@ if(EXISTS ${OS_RELEASE_PATH})
else()
set(OSRELEASE "NOT COMPATIBLE !")
endif()
-
+elseif(${BUILD_ENV_SYSROOT} == $ENV{PKG_CONFIG_SYSROOT_DIR})
+ set(OSRELEASE "yocto-build")
else()
set(OSRELEASE "NOT COMPATIBLE ! Missing ${OS_RELEASE_PATH} file.")
endif()