We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2918062 commit f492b25Copy full SHA for f492b25
src/bootstrap/dist.rs
@@ -645,6 +645,14 @@ impl Step for RustcDev {
645
&[],
646
&tarball.image_dir().join("lib/rustlib/rustc-src/rust"),
647
);
648
+ // This particular crate is used as a build dependency of the above.
649
+ copy_src_dirs(
650
+ builder,
651
+ &builder.src,
652
+ &["src/build_helper"],
653
+ &[],
654
+ &tarball.image_dir().join("lib/rustlib/rustc-src/rust"),
655
+ );
656
for file in src_files {
657
tarball.add_file(builder.src.join(file), "lib/rustlib/rustc-src/rust", 0o644);
658
}
0 commit comments