diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-07-07 12:37:55 -0600 |
|---|---|---|
| committer | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-07-20 11:23:59 -0600 |
| commit | d812d430a4a90a8ed3e5cf50387ea9a25ede4e97 (patch) | |
| tree | f0caca01d97ccf495f86a940aae90b866bfa9c17 /src/bootstrap | |
| parent | aa8b93bd10b12f6f3696951f0a635add882ab0d8 (diff) | |
| download | rust-d812d430a4a90a8ed3e5cf50387ea9a25ede4e97.tar.gz rust-d812d430a4a90a8ed3e5cf50387ea9a25ede4e97.zip | |
Fix a nit.
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/check.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs index bb98e26333c..3e9c02863e7 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) { |
