File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1106,11 +1106,11 @@ impl Step for Sysroot {
11061106 let compiler = self . compiler ;
11071107 let host_dir = builder. out . join ( & compiler. host . triple ) ;
11081108 let sysroot = if compiler. stage == 0 {
1109- host_dir . join ( "stage0-sysroot" )
1109+ builder . out . join ( & compiler . host . triple ) . join ( "stage0-sysroot" )
11101110 } else if builder. download_rustc ( ) {
1111- host_dir . join ( "ci-rustc-sysroot" )
1111+ builder . out . join ( & compiler . host . triple ) . join ( "ci-rustc-sysroot" )
11121112 } else {
1113- host_dir . join ( format ! ( "stage{}" , compiler. stage) )
1113+ builder . out . join ( & compiler . host . triple ) . join ( format ! ( "stage{}" , compiler. stage) )
11141114 } ;
11151115 let _ = fs:: remove_dir_all ( & sysroot) ;
11161116 t ! ( fs:: create_dir_all( & sysroot) ) ;
You can’t perform that action at this time.
0 commit comments