Use a consistent rootfs location (#2005)
authorSwift Kim <swift.kim@samsung.com>
Wed, 22 Jan 2020 14:53:41 +0000 (23:53 +0900)
committerJan Kotas <jkotas@microsoft.com>
Wed, 22 Jan 2020 14:53:41 +0000 (06:53 -0800)
src/coreclr/build-test.sh
src/installer/corehost/build.sh

index 37d9154..274995f 100755 (executable)
@@ -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
 
index 9d5db6b..e1fba6b 100755 (executable)
@@ -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