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 {
1106
1106
let compiler = self . compiler ;
1107
1107
let host_dir = builder. out . join ( & compiler. host . triple ) ;
1108
1108
let sysroot = if compiler. stage == 0 {
1109
- builder . out . join ( & compiler . host . triple ) . join ( "stage0-sysroot" )
1109
+ host_dir . join ( "stage0-sysroot" )
1110
1110
} else if builder. download_rustc ( ) {
1111
- builder . out . join ( & compiler . host . triple ) . join ( "ci-rustc-sysroot" )
1111
+ host_dir . join ( "ci-rustc-sysroot" )
1112
1112
} else {
1113
- builder . out . join ( & compiler . host . triple ) . join ( format ! ( "stage{}" , compiler. stage) )
1113
+ host_dir . join ( format ! ( "stage{}" , compiler. stage) )
1114
1114
} ;
1115
1115
let _ = fs:: remove_dir_all ( & sysroot) ;
1116
1116
t ! ( fs:: create_dir_all( & sysroot) ) ;
You can’t perform that action at this time.
0 commit comments