about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorDylan MacKenzie <ecstaticmorse@gmail.com>2020-09-23 16:17:11 -0700
committerDylan MacKenzie <ecstaticmorse@gmail.com>2020-09-23 16:17:11 -0700
commitc0ddaed2bfa95d488db7576055ee7472968babfd (patch)
treee1a83fe20c47a6976fdc791fcd7c3c678cd7b43e /src/bootstrap
parentbcbd2ccc8d4591705fd5b63a5d5f5fc320cd89be (diff)
downloadrust-c0ddaed2bfa95d488db7576055ee7472968babfd.tar.gz
rust-c0ddaed2bfa95d488db7576055ee7472968babfd.zip
Remove warning about possible future deprecation
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/compile.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs
index 02095c27335..40bf6c48296 100644
--- a/src/bootstrap/compile.rs
+++ b/src/bootstrap/compile.rs
@@ -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;
         }