From dc1b3e32e939462a8b591366cefd7c88103988e3 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Mon, 24 Mar 2014 11:15:56 -0700 Subject: [PATCH] fix(toolchain_util): Correct default binhost ordering. Later hosts in the list override earlier hosts so the current version must be listed after the older sdk version. --- build_library/toolchain_util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_library/toolchain_util.sh b/build_library/toolchain_util.sh index 8ed3162de3..5ae199b6d2 100644 --- a/build_library/toolchain_util.sh +++ b/build_library/toolchain_util.sh @@ -118,7 +118,7 @@ get_board_binhost() { shift if [[ $# -eq 0 ]]; then - set -- "${COREOS_VERSION_ID}" "${COREOS_SDK_VERSION}" + set -- "${COREOS_SDK_VERSION}" "${COREOS_VERSION_ID}" fi for ver in "$@"; do