From 24e140b2b39f7783eb131e16afb26c1c651aa47a Mon Sep 17 00:00:00 2001 From: Kjetil Kjeka Date: Mon, 8 Apr 2024 10:55:36 +0200 Subject: [PATCH] Fix typo in llvm-bitcode-linker install printout --- src/bootstrap/src/core/build_steps/install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/src/core/build_steps/install.rs b/src/bootstrap/src/core/build_steps/install.rs index a81abec4b7071..767c0f6936494 100644 --- a/src/bootstrap/src/core/build_steps/install.rs +++ b/src/bootstrap/src/core/build_steps/install.rs @@ -305,7 +305,7 @@ install!((self, builder, _config), install_sh(builder, "llvm-bitcode-linker", self.compiler.stage, Some(self.target), &tarball); } else { builder.info( - &format!("skipping llvm-too stage{} ({})", self.compiler.stage, self.target), + &format!("skipping llvm-bitcode-linker stage{} ({})", self.compiler.stage, self.target), ); } };