]> git.lizzy.rs Git - rust.git/commitdiff
build: llvm_tools tidy
authorBrad Campbell <bradjc5@gmail.com>
Sat, 23 Jun 2018 16:34:18 +0000 (12:34 -0400)
committerBrad Campbell <bradjc5@gmail.com>
Sat, 23 Jun 2018 16:34:18 +0000 (12:34 -0400)
src/bootstrap/dist.rs
src/tools/build-manifest/src/main.rs

index bb82f5157f01338c8246d0dc1e99cc2bb7a26334..8ce4e73e53c8553e65e5776cdc07e16ed7ab48f4 100644 (file)
@@ -1303,7 +1303,11 @@ fn run(self, builder: &Builder) {
         let cargo_installer = builder.ensure(Cargo { stage, target });
         let rustfmt_installer = builder.ensure(Rustfmt { stage, target });
         let rls_installer = builder.ensure(Rls { stage, target });
-        let llvm_tools_installer = builder.ensure(LlvmTools { stage, target, compiler: builder.compiler(stage, target) });
+        let llvm_tools_installer = builder.ensure(LlvmTools {
+            stage,
+            target,
+            compiler: builder.compiler(stage, target)
+        });
         let mingw_installer = builder.ensure(Mingw { host: target });
         let analysis_installer = builder.ensure(Analysis {
             compiler: builder.compiler(stage, self.host),
index a1686db999597f308ca0b8550a2440888d13b1fb..35fc2182313c95de4b4a65076a3741f4e7473038 100644 (file)
@@ -260,7 +260,8 @@ fn build(&mut self) {
         self.cargo_git_commit_hash = self.git_commit_hash("cargo", "x86_64-unknown-linux-gnu");
         self.rls_git_commit_hash = self.git_commit_hash("rls", "x86_64-unknown-linux-gnu");
         self.rustfmt_git_commit_hash = self.git_commit_hash("rustfmt", "x86_64-unknown-linux-gnu");
-        self.llvm_tools_git_commit_hash = self.git_commit_hash("llvm-tools", "x86_64-unknown-linux-gnu");
+        self.llvm_tools_git_commit_hash = self.git_commit_hash("llvm-tools",
+                                                               "x86_64-unknown-linux-gnu");
 
         self.digest_and_sign();
         let manifest = self.build_manifest();