From 99074fc75e8025593bfe101cd68f577db751d8f6 Mon Sep 17 00:00:00 2001 From: Jacob Siverskog Date: Mon, 4 Mar 2019 12:40:30 +0100 Subject: [PATCH] toolchain: Fix typo and grammar in error message Minor grammatical changes. Signed-off-by: Jacob Siverskog --- cmake/toolchain/zephyr/host-tools.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/toolchain/zephyr/host-tools.cmake b/cmake/toolchain/zephyr/host-tools.cmake index 56fae81fb25..e9d8a71ecb3 100644 --- a/cmake/toolchain/zephyr/host-tools.cmake +++ b/cmake/toolchain/zephyr/host-tools.cmake @@ -33,10 +33,10 @@ string(REGEX REPLACE "-.*" "" SDK_VERSION_PRE2 ${SDK_VERSION_PRE1}) # Strip any trailing spaces/newlines from the version string string(STRIP ${SDK_VERSION_PRE2} SDK_VERSION) if(${REQUIRED_SDK_VER} VERSION_GREATER ${SDK_VERSION}) - message(FATAL_ERROR "The SDK version you are using is old, please update your SDK. + message(FATAL_ERROR "The SDK version you are using is too old, please update your SDK. You need at least SDK version ${REQUIRED_SDK_VER}. You have version ${SDK_VERSION} (${ZEPHYR_SDK_INSTALL_DIR}). -The new version of the SDK can be download from: +The new version of the SDK can be downloaded from: https://github.com/zephyrproject-rtos/meta-zephyr-sdk/releases/download/${REQUIRED_SDK_VER}/zephyr-sdk-${REQUIRED_SDK_VER}-setup.run ") endif()