From 2dd815d51c8d27a9ef035cbe0324e41b51072ae5 Mon Sep 17 00:00:00 2001 From: Swift Kim Date: Wed, 22 Jan 2020 23:53:41 +0900 Subject: [PATCH] Use a consistent rootfs location (#2005) --- src/coreclr/build-test.sh | 2 +- src/installer/corehost/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreclr/build-test.sh b/src/coreclr/build-test.sh index 37d9154..274995f 100755 --- a/src/coreclr/build-test.sh +++ b/src/coreclr/build-test.sh @@ -700,7 +700,7 @@ fi if [ $__CrossBuild == 1 ]; then export CROSSCOMPILE=1 if ! [[ -n "$ROOTFS_DIR" ]]; then - export ROOTFS_DIR="$__RepoRootDir/eng/common/cross/rootfs/$__BuildArch" + export ROOTFS_DIR="$__RepoRootDir/.tools/rootfs/$__BuildArch" fi fi diff --git a/src/installer/corehost/build.sh b/src/installer/corehost/build.sh index 9d5db6b..e1fba6b 100755 --- a/src/installer/corehost/build.sh +++ b/src/installer/corehost/build.sh @@ -183,7 +183,7 @@ __cmake_defines="${__cmake_defines} ${__arch_define}" # Configure environment if we are doing a cross compile. if [ "$__CrossBuild" == 1 ]; then if ! [[ -n $ROOTFS_DIR ]]; then - export ROOTFS_DIR="$RootRepo/eng/common/cross/rootfs/$__build_arch" + export ROOTFS_DIR="$RootRepo/.tools/rootfs/$__build_arch" fi fi -- 2.7.4