From 009037185a8a4faa0c8595ca09156a80a4a29379 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Wed, 15 Jan 2020 09:36:47 -0500 Subject: [PATCH] cmake: print version to stdout, not stderr The version message from cmake is not an error and should not go to stderr. Signed-off-by: Anas Nashif --- cmake/version.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/version.cmake b/cmake/version.cmake index e04247e69b7..fa9430887d4 100644 --- a/cmake/version.cmake +++ b/cmake/version.cmake @@ -54,7 +54,7 @@ else() set(PROJECT_VERSION ${PROJECT_VERSION_WITHOUT_TWEAK}) endif() -message("Zephyr version: ${PROJECT_VERSION}") +message(STATUS "Zephyr version: ${PROJECT_VERSION}") set(MAJOR ${PROJECT_VERSION_MAJOR}) # Temporary convenience variable set(MINOR ${PROJECT_VERSION_MINOR}) # Temporary convenience variable