diff options
| author | kennytm <kennytm@gmail.com> | 2018-07-18 22:35:01 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-18 22:35:01 +0800 |
| commit | fa9f91d9b1f31a98bf3ac0c624590f4086dc8659 (patch) | |
| tree | b011130144ce51111a48cf8e2bf3fd93b65be65c /src/bootstrap | |
| parent | 5dd32752375bdd8ffcaf3c49ac78bd9ca0422d4f (diff) | |
| parent | 3df43098a4b2245cee7b31273fede0d527963d35 (diff) | |
| download | rust-fa9f91d9b1f31a98bf3ac0c624590f4086dc8659.tar.gz rust-fa9f91d9b1f31a98bf3ac0c624590f4086dc8659.zip | |
Rollup merge of #52464 - o01eg:patch-1, r=alexcrichton
Allow clippy to be installed with make install After #51122 clippy is available as a component but doesn't install when building from source. This PR allows to install clippy with extended tools.
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/builder.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index bc8e8e7df01..c67787b5b0a 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -459,6 +459,7 @@ impl<'a> Builder<'a> { dist::Cargo, dist::Rls, dist::Rustfmt, + dist::Clippy, dist::LlvmTools, dist::Extended, dist::HashSign @@ -469,6 +470,7 @@ impl<'a> Builder<'a> { install::Cargo, install::Rls, install::Rustfmt, + install::Clippy, install::Analysis, install::Src, install::Rustc |
