Skip to content

Commit b03fba7

Browse files
committed
rename done_stamp to lld_stamp
Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent b54d652 commit b03fba7

File tree

1 file changed

+3
-3
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+3
-3
lines changed

src/bootstrap/src/core/build_steps/llvm.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1015,8 +1015,8 @@ impl Step for Lld {
10151015

10161016
let out_dir = builder.lld_out(target);
10171017

1018-
let done_stamp = BuildStamp::new(&out_dir).with_prefix("lld");
1019-
if done_stamp.path().exists() {
1018+
let lld_stamp = BuildStamp::new(&out_dir).with_prefix("lld");
1019+
if lld_stamp.path().exists() {
10201020
return out_dir;
10211021
}
10221022

@@ -1091,7 +1091,7 @@ impl Step for Lld {
10911091

10921092
cfg.build();
10931093

1094-
t!(done_stamp.write());
1094+
t!(lld_stamp.write());
10951095
out_dir
10961096
}
10971097
}

0 commit comments

Comments
 (0)