File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -852,9 +852,10 @@ impl Step for Assemble {
852
852
let compiler = build_compiler;
853
853
for stage in 0 ..min ( target_compiler. stage , builder. flags . keep_stage . unwrap ( ) ) {
854
854
let target_compiler = builder. compiler ( stage, target_compiler. host ) ;
855
- builder. ensure ( StdLink { compiler, target_compiler, target : target_compiler. host } ) ;
856
- builder. ensure ( TestLink { compiler, target_compiler, target : target_compiler. host } ) ;
857
- builder. ensure ( RustcLink { compiler, target_compiler, target : target_compiler. host } ) ;
855
+ let target = target_compiler. host ;
856
+ builder. ensure ( StdLink { compiler, target_compiler, target } ) ;
857
+ builder. ensure ( TestLink { compiler, target_compiler, target } ) ;
858
+ builder. ensure ( RustcLink { compiler, target_compiler, target } ) ;
858
859
}
859
860
} else {
860
861
builder. ensure ( Rustc { compiler : build_compiler, target : target_compiler. host } ) ;
You can’t perform that action at this time.
0 commit comments