diff options
| author | Ariel Ben-Yehuda <arielb1@mail.tau.ac.il> | 2017-08-29 21:41:03 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-29 21:41:03 +0000 |
| commit | a88757e0cdae8b24887e9404df20d3a265fc1c7c (patch) | |
| tree | 867eae13430cec7a3715e23e02db7167339318e5 | |
| parent | 294ce22f768b0e5941331fc949d56e3d864bee4a (diff) | |
| parent | ecd127d23fd035995749cf570313b3f1626ad13d (diff) | |
| download | rust-a88757e0cdae8b24887e9404df20d3a265fc1c7c.tar.gz rust-a88757e0cdae8b24887e9404df20d3a265fc1c7c.zip | |
Rollup merge of #44144 - alexcrichton:faster-hash-and-sign, r=Mark-Simulacrum
rustbuild: Fix dependencies of build-manifest No need to depend on librustc! All we need is libstd Closes #44140
| -rw-r--r-- | src/bootstrap/tool.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/tool.rs b/src/bootstrap/tool.rs index d798e8de3df..e759f1a3e6f 100644 --- a/src/bootstrap/tool.rs +++ b/src/bootstrap/tool.rs @@ -198,7 +198,7 @@ tool!( Linkchecker, "src/tools/linkchecker", "linkchecker", Mode::Libstd; CargoTest, "src/tools/cargotest", "cargotest", Mode::Libstd; Compiletest, "src/tools/compiletest", "compiletest", Mode::Libtest; - BuildManifest, "src/tools/build-manifest", "build-manifest", Mode::Librustc; + BuildManifest, "src/tools/build-manifest", "build-manifest", Mode::Libstd; RemoteTestClient, "src/tools/remote-test-client", "remote-test-client", Mode::Libstd; RustInstaller, "src/tools/rust-installer", "rust-installer", Mode::Libstd; ); |
