X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fbootstrap%2Flib.rs;h=592477df02f4dafe98982b580dbea0acbb6c050c;hb=b6801b7dcd56a272dda2fbd88ecbc5b1476d8b83;hp=c2aa75fd88fcc80376e2f09a93eec3afd593d564;hpb=5ebd4d9c27bf8fee4f7d664d76c41832745dff43;p=rust.git diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index c2aa75fd88f..592477df02f 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -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) {