From 7c6258d669499633c8a8ecc0121bb18edb65b76a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Miku=C5=82a?= Date: Tue, 7 Jul 2020 17:39:45 +0200 Subject: [PATCH] Bootstrap: reorder tools to properly reflect their build order --- src/bootstrap/builder.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index 3cbecbbaa06cb..b81e097fe1244 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -367,14 +367,14 @@ impl<'a> Builder<'a> { tool::RemoteTestClient, tool::RustInstaller, tool::Cargo, + tool::Clippy, + tool::CargoClippy, + tool::Rustfmt, tool::Rls, tool::RustAnalyzer, tool::Rustdoc, - tool::Clippy, - tool::CargoClippy, native::Llvm, native::Sanitizers, - tool::Rustfmt, tool::Miri, tool::CargoMiri, native::Lld @@ -462,10 +462,10 @@ impl<'a> Builder<'a> { dist::Src, dist::PlainSourceTarball, dist::Cargo, + dist::Clippy, + dist::Rustfmt, dist::Rls, dist::RustAnalyzer, - dist::Rustfmt, - dist::Clippy, dist::Miri, dist::LlvmTools, dist::Extended,