]> git.lizzy.rs Git - rust.git/commitdiff
Remove warning about possible future deprecation
authorDylan MacKenzie <ecstaticmorse@gmail.com>
Wed, 23 Sep 2020 23:17:11 +0000 (16:17 -0700)
committerDylan MacKenzie <ecstaticmorse@gmail.com>
Wed, 23 Sep 2020 23:17:11 +0000 (16:17 -0700)
src/bootstrap/compile.rs

index 02095c27335e4aa3f0fdd50f44c8ecfaba1fddbd..40bf6c48296b2eaf98d55ae9a592301b8a8e6bd8 100644 (file)
@@ -475,10 +475,6 @@ fn run(self, builder: &Builder<'_>) {
         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;
         }