From 86e34cdd1b548c4a0f938fa3cb89f0db38f6b6fa Mon Sep 17 00:00:00 2001 From: Collins Abitekaniza Date: Tue, 10 Jul 2018 22:23:20 +0300 Subject: [PATCH] clear_if_dirty with self.rustc(compiler) for Mode::Rustc --- src/bootstrap/builder.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index ab0d9a066414..dc27fd56fb0a 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -755,6 +755,7 @@ impl<'a> Builder<'a> { self.clear_if_dirty(&my_out, &self.rustc(compiler)); }, Mode::Rustc => { + self.clear_if_dirty(&my_out, &self.rustc(compiler)); self.clear_if_dirty(&my_out, &libstd_stamp); self.clear_if_dirty(&my_out, &libtest_stamp); },