Remove warning about possible future deprecation

This commit is contained in:
Dylan MacKenzie 2020-09-23 16:17:11 -07:00
parent bcbd2ccc8d
commit c0ddaed2bf

View file

@ -475,10 +475,6 @@ impl Step for Rustc {
if builder.config.keep_stage.contains(&compiler.stage) {
builder.info("Warning: Using a potentially old librustc. This may not behave well.");
builder.info("Warning: Use `--keep-stage-std` if you want to rebuild the compiler when it changes");
builder.info(
"Warning: Please file a GitHub issue if `--keep-stage-std` doesn't work for you.",
);
builder.info("Warning: It may replace `--keep-stage` in the future");
builder.ensure(RustcLink { compiler, target_compiler: compiler, target });
return;
}