From e7441fbf61d3189dae16468fe6a3900ad466ed69 Mon Sep 17 00:00:00 2001 From: Jens Reidel Date: Wed, 23 Jul 2025 20:00:42 +0200 Subject: [PATCH] Clippy fixup Signed-off-by: Jens Reidel --- src/bootstrap/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/src/lib.rs b/src/bootstrap/src/lib.rs index 2aee9f072844..51a84ad5272c 100644 --- a/src/bootstrap/src/lib.rs +++ b/src/bootstrap/src/lib.rs @@ -1343,7 +1343,7 @@ impl Build { .map(|p| &**p); if self.config.is_host_target(target) && configured_root.is_none() { - return Some(Path::new("/usr")); + Some(Path::new("/usr")) } else { configured_root }