]> git.lizzy.rs Git - rust.git/blobdiff - src/bootstrap/lib.rs
Merge branch 'master' into rusty-hermit
[rust.git] / src / bootstrap / lib.rs
index c2aa75fd88fcc80376e2f09a93eec3afd593d564..592477df02f4dafe98982b580dbea0acbb6c050c 100644 (file)
@@ -1126,7 +1126,7 @@ fn read_stamp_file(&self, stamp: &Path) -> Vec<(PathBuf, bool)> {
         }
 
         let mut paths = Vec::new();
-        let contents = t!(fs::read(stamp));
+        let contents = t!(fs::read(stamp), &stamp);
         // This is the method we use for extracting paths from the stamp file passed to us. See
         // run_cargo for more information (in compile.rs).
         for part in contents.split(|b| *b == 0) {