diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-09-06 17:37:56 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-09-06 17:37:56 +0200 |
commit | 3d8f88c32e49f9e5b4d872adc10be8344d2d5e24 (patch) | |
tree | 1171f782a89e2c428b5bebefb9365a40c6ad3318 | |
parent | f74611d3bc7c26ab6c93d92feb89e67ee1fab2b6 (diff) |
fix empty vendor variable
-rwxr-xr-x | embedded-test.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embedded-test.sh b/embedded-test.sh index 0ec940b..25ca4a1 100755 --- a/embedded-test.sh +++ b/embedded-test.sh @@ -392,11 +392,11 @@ runtest() { prefix=$libc ;; esac - cross=${cpu_arch}-${vendor}-linux-${prefix}${suffix} + cross=${cpu_arch}-openadk-linux-${prefix}${suffix} if [ -z $psuffix ];then - TCPATH=${topdir}/${vendor}/toolchain_qemu-${march}_${libc}_${cpu_arch} + TCPATH=${topdir}/openadk/toolchain_qemu-${march}_${libc}_${cpu_arch} else - TCPATH=${topdir}/${vendor}/toolchain_qemu-${march}_${libc}_${cpu_arch}_${psuffix} + TCPATH=${topdir}/openadk/toolchain_qemu-${march}_${libc}_${cpu_arch}_${psuffix} fi export PATH="${TCPATH}/usr/bin:$PATH" |