From 8dad8eeffa43adf2b71db05159a842bb02fb0c78 Mon Sep 17 00:00:00 2001 From: Juan Manuel Cruz Date: Thu, 11 Feb 2016 13:12:00 -0600 Subject: [PATCH] build: changes order in which paths are added to $PATH MinGW expects to have new program locations added to the end of the PATH variable. Change-Id: Ifd31b63c9ef39a7f2b416ffef39461290c822dd7 Signed-off-by: Juan Manuel Cruz Signed-off-by: Yonattan Louise --- zephyr-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr-env.sh b/zephyr-env.sh index ec24450fe2..62188d7232 100644 --- a/zephyr-env.sh +++ b/zephyr-env.sh @@ -15,7 +15,7 @@ export ZEPHYR_BASE=$( builtin cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ${MIN scripts_path=${ZEPHYR_BASE}/scripts echo "${PATH}" | grep -q "${scripts_path}" -[ $? != 0 ] && export PATH=${scripts_path}:${PATH} +[ $? != 0 ] && export PATH=${PATH}:${scripts_path} unset scripts_path # enable custom environment settings