aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Bultel <thierry.bultel@iot.bzh>2018-09-18 13:39:04 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2018-09-20 11:51:26 +0000
commit3dc85ecc9693a3a4af6d1143507f56b6800d523e (patch)
tree58cc5d6613983632fa03af77946fa32acf94c5b4
parent7fa5e5a2ed49b30498733b96c61d2697f3c30020 (diff)
common.cmake: fixed erroneous search path for os-releaseguppy_6.90.0guppy/6.90.06.90.0
Change-Id: I20eb2c342e33d838b9f8c80b7ec93c32794b4eeb Signed-off-by: Thierry Bultel <thierry.bultel@iot.bzh>
-rw-r--r--cmake/common.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/common.cmake b/cmake/common.cmake
index 8e57b26..f553ae0 100644
--- a/cmake/common.cmake
+++ b/cmake/common.cmake
@@ -42,7 +42,7 @@ endif()
# Used to package .deb
set(OS_RELEASE_PATH "${BUILD_ENV_SYSROOT}/etc/os-release")
if(EXISTS ${OS_RELEASE_PATH})
- execute_process(COMMAND bash "-c" "grep -E '^ID(_LIKE)?=' /etc/os-release | tail -n 1"
+ execute_process(COMMAND bash "-c" "grep -E '^ID(_LIKE)?=' ${OS_RELEASE_PATH} | tail -n 1"
OUTPUT_VARIABLE TMP_OSRELEASE
)