From 248a2d1d988aeb68271b81bf370c2e9aec14b923 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Sun, 29 Jan 2023 16:42:34 +0000 Subject: [PATCH] make clippy less spammy --- src/bootstrap/bin/rustc.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bootstrap/bin/rustc.rs b/src/bootstrap/bin/rustc.rs index 1d623fc6a663d..abf897b1634f6 100644 --- a/src/bootstrap/bin/rustc.rs +++ b/src/bootstrap/bin/rustc.rs @@ -167,7 +167,6 @@ fn main() { let libdir_string = libdir.to_string_lossy(); let (sysroot, _) = libdir_string.rsplit_once('/').unwrap(); if !args.iter().any(|arg| arg == "--sysroot") { - eprintln!("passing clippy --sysroot {}", sysroot); cmd.arg("--sysroot").arg(&sysroot); } }