Skip to content

Commit

Permalink
dist: don't try and add files I removed
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpallant committed Nov 25, 2024
1 parent 67afaaa commit c78c7ba
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/bootstrap/src/utils/tarball.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub(crate) enum OverlayKind {
impl OverlayKind {
fn legal_and_readme(&self) -> &[&str] {
match self {
OverlayKind::Rust => &["COPYRIGHT", "LICENSE-APACHE", "LICENSE-MIT", "README.md"],
OverlayKind::Rust => &["COPYRIGHT", "README.md"],
OverlayKind::Llvm => {
&["src/llvm-project/llvm/LICENSE.TXT", "src/llvm-project/llvm/README.txt"]
}
Expand Down Expand Up @@ -67,12 +67,9 @@ impl OverlayKind {
"compiler/rustc_codegen_cranelift/LICENSE-APACHE",
"compiler/rustc_codegen_cranelift/LICENSE-MIT",
],
OverlayKind::LlvmBitcodeLinker => &[
"COPYRIGHT",
"LICENSE-APACHE",
"LICENSE-MIT",
"src/tools/llvm-bitcode-linker/README.md",
],
OverlayKind::LlvmBitcodeLinker => {
&["COPYRIGHT", "src/tools/llvm-bitcode-linker/README.md"]
}
}
}

Expand Down

0 comments on commit c78c7ba

Please sign in to comment.