Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 249479a

Browse files
committedNov 28, 2024··
dist: don't try and add files I removed
1 parent 7b72cc9 commit 249479a

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed
 

‎src/bootstrap/src/utils/tarball.rs

+4-7
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub(crate) enum OverlayKind {
3131
impl OverlayKind {
3232
fn legal_and_readme(&self) -> &[&str] {
3333
match self {
34-
OverlayKind::Rust => &["COPYRIGHT", "LICENSE-APACHE", "LICENSE-MIT", "README.md"],
34+
OverlayKind::Rust => &["COPYRIGHT", "README.md"],
3535
OverlayKind::Llvm => {
3636
&["src/llvm-project/llvm/LICENSE.TXT", "src/llvm-project/llvm/README.txt"]
3737
}
@@ -67,12 +67,9 @@ impl OverlayKind {
6767
"compiler/rustc_codegen_cranelift/LICENSE-APACHE",
6868
"compiler/rustc_codegen_cranelift/LICENSE-MIT",
6969
],
70-
OverlayKind::LlvmBitcodeLinker => &[
71-
"COPYRIGHT",
72-
"LICENSE-APACHE",
73-
"LICENSE-MIT",
74-
"src/tools/llvm-bitcode-linker/README.md",
75-
],
70+
OverlayKind::LlvmBitcodeLinker => {
71+
&["COPYRIGHT", "src/tools/llvm-bitcode-linker/README.md"]
72+
}
7673
}
7774
}
7875

0 commit comments

Comments
 (0)
Please sign in to comment.