diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-05-04 19:18:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-04 19:18:22 +0200 |
| commit | 75e8f87673905d58618773bec92eff6446c0d579 (patch) | |
| tree | 0287e377a5dbb3e130b3eb2265703697cfd50ff0 | |
| parent | ab80b7a53d93bda4d33f3469a3442eee2984baf3 (diff) | |
| parent | 6530b1bd537894a77daa9cdc904148813896f308 (diff) | |
| download | rust-75e8f87673905d58618773bec92eff6446c0d579.tar.gz rust-75e8f87673905d58618773bec92eff6446c0d579.zip | |
Rollup merge of #111201 - krasimirgg:add_gitmodules, r=jyn514
bootstrap: add .gitmodules to the sources The bootstrap builder now expects this file to exist: https://github.com/rust-lang/rust/blob/6f8c0557e0b73c73a8a7163a15f4a5a3feca7d5c/src/bootstrap/builder.rs#L494 Zulip thread: https://rust-lang.zulipchat.com/#narrow/stream/187780-t-compiler.2Fwg-llvm/topic/missing.20llvm-project.2Fruntimes.20in.20beta.20srcs
| -rw-r--r-- | src/bootstrap/dist.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 3b35ca1d15d..ab7f7350d5f 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -976,6 +976,7 @@ impl Step for PlainSourceTarball { "config.example.toml", "Cargo.toml", "Cargo.lock", + ".gitmodules", ]; let src_dirs = ["src", "compiler", "library", "tests"]; |
