From 7a1b9f5bcc3ab142420ad8a8c95beb3306a063bc Mon Sep 17 00:00:00 2001 From: Yaroslav Yamshchikov Date: Mon, 23 Dec 2019 20:14:45 +0300 Subject: [PATCH] more appropriate default rootfs-dir path (#1126) crossbuilding of at least armel:tizen and arm64:xenial works fine without specifying the ROOTFS_DIR environment variable (with default path) only if changes of this PR are applied. (building coreclr using src/coreclr/build.sh script on linux) --- src/coreclr/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/build.sh b/src/coreclr/build.sh index 68185e0d..0922544 100755 --- a/src/coreclr/build.sh +++ b/src/coreclr/build.sh @@ -658,7 +658,7 @@ __CrossGenCoreLibLog="$__LogsDir/CrossgenCoreLib_$__BuildOS.$__BuildArch.$__Buil 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 -- 2.7.4