From d812d430a4a90a8ed3e5cf50387ea9a25ede4e97 Mon Sep 17 00:00:00 2001 From: Mark Simulacrum Date: Fri, 7 Jul 2017 12:37:55 -0600 Subject: [PATCH] Fix a nit. --- src/bootstrap/check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs index bb98e26333cb..3e9c02863e76 100644 --- a/src/bootstrap/check.rs +++ b/src/bootstrap/check.rs @@ -191,7 +191,7 @@ impl<'a> Step<'a> for Cargo<'a> { const ONLY_HOSTS: bool = true; fn should_run(_builder: &Builder, path: &Path) -> bool { - path.ends_with("cargo") // FIXME: Why is this not src/tools/cargo? + path.ends_with("src/tools/cargo") } fn make_run(builder: &Builder, _path: Option<&Path>, _host: &str, target: &str) {