]> git.lizzy.rs Git - rust.git/blobdiff - src/bootstrap/tool.rs
Rebase fallout.
[rust.git] / src / bootstrap / tool.rs
index 5bb40014eb97f20f9977bcf469b106f6379736a2..c3b04a9bbce3f98327b0607c2517476bad70e075 100644 (file)
@@ -857,14 +857,7 @@ fn run(mut $sel, $builder: &Builder<'_>) -> Option<PathBuf> {
     Clippy, "src/tools/clippy", "clippy-driver", stable=true, in_tree=true, {};
     Miri, "src/tools/miri", "miri", stable=false, {};
     CargoMiri, "src/tools/miri/cargo-miri", "cargo-miri", stable=false, {};
-    Rls, "src/tools/rls", "rls", stable=true, {
-        builder.ensure(Clippy {
-            compiler: self.compiler,
-            target: self.target,
-            extra_features: Vec::new(),
-        });
-        self.extra_features.push("clippy".to_owned());
-    };
+    Rls, "src/tools/rls", "rls", stable=true, {};
     // FIXME: tool_std is not quite right, we shouldn't allow nightly features.
     // But `builder.cargo` doesn't know how to handle ToolBootstrap in stages other than 0,
     // and this is close enough for now.