about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorMark Simulacrum <mark.simulacrum@gmail.com>2018-04-01 18:04:57 +0200
committerGitHub <noreply@github.com>2018-04-01 18:04:57 +0200
commit36f9f76356b3c2eb12bb3090c6c1349be8593333 (patch)
tree83b9f310edae4d92016c2f2ad72612446e918a12 /src/bootstrap
parent4799d2eb0121bbc21fc9da70015ced663f6cfc72 (diff)
parent86915ddf308bf4e4d4cb17fe0b2d7f12cd591328 (diff)
downloadrust-36f9f76356b3c2eb12bb3090c6c1349be8593333.tar.gz
rust-36f9f76356b3c2eb12bb3090c6c1349be8593333.zip
Rollup merge of #49549 - Mark-Simulacrum:bootstrap-cleanup, r=alexcrichton
Remove filetime dep from build_helper

r? @alexcrichton
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/compile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs
index 9f33935b6e9..e6aa78fba52 100644
--- a/src/bootstrap/compile.rs
+++ b/src/bootstrap/compile.rs
@@ -1120,7 +1120,7 @@ pub fn run_cargo(build: &Build, cargo: &mut Command, stamp: &Path, is_check: boo
     let max = max.unwrap();
     let max_path = max_path.unwrap();
     if stamp_contents == new_contents && max <= stamp_mtime {
-        build.verbose(&format!("not updating {:?}; contents equal and {} <= {}",
+        build.verbose(&format!("not updating {:?}; contents equal and {:?} <= {:?}",
                 stamp, max, stamp_mtime));
         return deps
     }