@@ -74,13 +74,13 @@ impl Step for Std {
7474 let from = builder. compiler ( 1 , build. build ) ;
7575 builder. ensure ( Std {
7676 compiler : from,
77- target : target ,
77+ target,
7878 } ) ;
7979 println ! ( "Uplifting stage1 std ({} -> {})" , from. host, target) ;
8080 builder. ensure ( StdLink {
8181 compiler : from,
8282 target_compiler : compiler,
83- target : target ,
83+ target,
8484 } ) ;
8585 return ;
8686 }
@@ -100,7 +100,7 @@ impl Step for Std {
100100 builder. ensure ( StdLink {
101101 compiler : builder. compiler ( compiler. stage , build. build ) ,
102102 target_compiler : compiler,
103- target : target ,
103+ target,
104104 } ) ;
105105 }
106106}
@@ -202,7 +202,7 @@ impl Step for StdLink {
202202
203203 builder. ensure ( tool:: CleanTools {
204204 compiler : target_compiler,
205- target : target ,
205+ target,
206206 mode : Mode :: Libstd ,
207207 } ) ;
208208 }
@@ -326,13 +326,13 @@ impl Step for Test {
326326 if build. force_use_stage1 ( compiler, target) {
327327 builder. ensure ( Test {
328328 compiler : builder. compiler ( 1 , build. build ) ,
329- target : target ,
329+ target,
330330 } ) ;
331331 println ! ( "Uplifting stage1 test ({} -> {})" , & build. build, target) ;
332332 builder. ensure ( TestLink {
333333 compiler : builder. compiler ( 1 , build. build ) ,
334334 target_compiler : compiler,
335- target : target ,
335+ target,
336336 } ) ;
337337 return ;
338338 }
@@ -351,7 +351,7 @@ impl Step for Test {
351351 builder. ensure ( TestLink {
352352 compiler : builder. compiler ( compiler. stage , build. build ) ,
353353 target_compiler : compiler,
354- target : target ,
354+ target,
355355 } ) ;
356356 }
357357}
@@ -398,7 +398,7 @@ impl Step for TestLink {
398398 & libtest_stamp ( build, compiler, target) ) ;
399399 builder. ensure ( tool:: CleanTools {
400400 compiler : target_compiler,
401- target : target ,
401+ target,
402402 mode : Mode :: Libtest ,
403403 } ) ;
404404 }
@@ -445,7 +445,7 @@ impl Step for Rustc {
445445 if build. force_use_stage1 ( compiler, target) {
446446 builder. ensure ( Rustc {
447447 compiler : builder. compiler ( 1 , build. build ) ,
448- target : target ,
448+ target,
449449 } ) ;
450450 println ! ( "Uplifting stage1 rustc ({} -> {})" , & build. build, target) ;
451451 builder. ensure ( RustcLink {
@@ -581,7 +581,7 @@ impl Step for RustcLink {
581581 & librustc_stamp ( build, compiler, target) ) ;
582582 builder. ensure ( tool:: CleanTools {
583583 compiler : target_compiler,
584- target : target ,
584+ target,
585585 mode : Mode :: Librustc ,
586586 } ) ;
587587 }
0 commit comments