@@ -74,13 +74,13 @@ impl Step for Std {
74
74
let from = builder. compiler ( 1 , build. build ) ;
75
75
builder. ensure ( Std {
76
76
compiler : from,
77
- target : target ,
77
+ target,
78
78
} ) ;
79
79
println ! ( "Uplifting stage1 std ({} -> {})" , from. host, target) ;
80
80
builder. ensure ( StdLink {
81
81
compiler : from,
82
82
target_compiler : compiler,
83
- target : target ,
83
+ target,
84
84
} ) ;
85
85
return ;
86
86
}
@@ -100,7 +100,7 @@ impl Step for Std {
100
100
builder. ensure ( StdLink {
101
101
compiler : builder. compiler ( compiler. stage , build. build ) ,
102
102
target_compiler : compiler,
103
- target : target ,
103
+ target,
104
104
} ) ;
105
105
}
106
106
}
@@ -202,7 +202,7 @@ impl Step for StdLink {
202
202
203
203
builder. ensure ( tool:: CleanTools {
204
204
compiler : target_compiler,
205
- target : target ,
205
+ target,
206
206
mode : Mode :: Libstd ,
207
207
} ) ;
208
208
}
@@ -326,13 +326,13 @@ impl Step for Test {
326
326
if build. force_use_stage1 ( compiler, target) {
327
327
builder. ensure ( Test {
328
328
compiler : builder. compiler ( 1 , build. build ) ,
329
- target : target ,
329
+ target,
330
330
} ) ;
331
331
println ! ( "Uplifting stage1 test ({} -> {})" , & build. build, target) ;
332
332
builder. ensure ( TestLink {
333
333
compiler : builder. compiler ( 1 , build. build ) ,
334
334
target_compiler : compiler,
335
- target : target ,
335
+ target,
336
336
} ) ;
337
337
return ;
338
338
}
@@ -351,7 +351,7 @@ impl Step for Test {
351
351
builder. ensure ( TestLink {
352
352
compiler : builder. compiler ( compiler. stage , build. build ) ,
353
353
target_compiler : compiler,
354
- target : target ,
354
+ target,
355
355
} ) ;
356
356
}
357
357
}
@@ -398,7 +398,7 @@ impl Step for TestLink {
398
398
& libtest_stamp ( build, compiler, target) ) ;
399
399
builder. ensure ( tool:: CleanTools {
400
400
compiler : target_compiler,
401
- target : target ,
401
+ target,
402
402
mode : Mode :: Libtest ,
403
403
} ) ;
404
404
}
@@ -445,7 +445,7 @@ impl Step for Rustc {
445
445
if build. force_use_stage1 ( compiler, target) {
446
446
builder. ensure ( Rustc {
447
447
compiler : builder. compiler ( 1 , build. build ) ,
448
- target : target ,
448
+ target,
449
449
} ) ;
450
450
println ! ( "Uplifting stage1 rustc ({} -> {})" , & build. build, target) ;
451
451
builder. ensure ( RustcLink {
@@ -581,7 +581,7 @@ impl Step for RustcLink {
581
581
& librustc_stamp ( build, compiler, target) ) ;
582
582
builder. ensure ( tool:: CleanTools {
583
583
compiler : target_compiler,
584
- target : target ,
584
+ target,
585
585
mode : Mode :: Librustc ,
586
586
} ) ;
587
587
}
0 commit comments