summaryrefslogtreecommitdiff
path: root/tcwg-benchmark.sh
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2018-12-18 23:16:58 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2018-12-21 19:29:57 +0000
commit608c5dff2d8ce8bb81f34206c86667f7ea540aec (patch)
tree82a00c00589d37efad84396d07acf34af664fa58 /tcwg-benchmark.sh
parente3a5895477c41254e7b0683c9f1313477ec84d3a (diff)
tcwg-benchmark.sh: Force use of build_container_port when copying sysroot to build container.
Change-Id: I4d7400dc9c138e1e7a5339dadfafd6aa4aaf9a26
Diffstat (limited to 'tcwg-benchmark.sh')
-rwxr-xr-xtcwg-benchmark.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcwg-benchmark.sh b/tcwg-benchmark.sh
index 058fe020..b3fcd3f5 100755
--- a/tcwg-benchmark.sh
+++ b/tcwg-benchmark.sh
@@ -147,13 +147,13 @@ esac
case "$sysroot" in
"tarball")
- sysroot="$build_container_host:$(find "$toolchaindir" -name "libc")"
+ sysroot="$build_container_host:$build_container_port:$(find "$toolchaindir" -name "libc")"
;;
"http://"*|"https://"*)
sysrootdir=$(untar_url "$sysroot" "$WORKSPACE" "--strip-components 1")
# Copy toolchain to the build container.
rsync -a --delete -e "ssh -p$build_container_port" "$sysrootdir/" "$build_container_host:$sysrootdir/"
- sysroot="$build_container_host:$sysrootdir"
+ sysroot="$build_container_host:$build_container_port:$sysrootdir"
;;
"")
# Use system sysroot.