From: Swift Kim Date: Wed, 22 Jan 2020 14:53:41 +0000 (+0900) Subject: Use a consistent rootfs location (#2005) X-Git-Tag: submit/tizen/20210909.063632~10298 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2dd815d51c8d27a9ef035cbe0324e41b51072ae5;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Use a consistent rootfs location (#2005) --- 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