diff options
| author | Joshua Nelson <jnelson@cloudflare.com> | 2022-05-22 08:30:56 -0500 |
|---|---|---|
| committer | Joshua Nelson <jnelson@cloudflare.com> | 2022-05-22 08:31:50 -0500 |
| commit | b0ea4e74cbcb7e4e42f622cda098b95e583f62d9 (patch) | |
| tree | f5e1ca89da57e1d696c95ccea2f7d2bd1322f07f /src/bootstrap/bootstrap.py | |
| parent | 30f386087564243ab88a93c984c265290a31580b (diff) | |
| download | rust-b0ea4e74cbcb7e4e42f622cda098b95e583f62d9.tar.gz rust-b0ea4e74cbcb7e4e42f622cda098b95e583f62d9.zip | |
Avoid accidentally enabling unstable features in compilers (take 2)
This allows rustbuild to control whether crates can use nightly features or not. It also prevents rustbuild from using nightly features itself.
Diffstat (limited to 'src/bootstrap/bootstrap.py')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index e38a574ca23..7a684c89fe3 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -1171,7 +1171,6 @@ def bootstrap(help_triggered): env = os.environ.copy() env["BOOTSTRAP_PARENT_ID"] = str(os.getpid()) env["BOOTSTRAP_PYTHON"] = sys.executable - env["RUSTC_BOOTSTRAP"] = '1' if build.rustc_commit is not None: env["BOOTSTRAP_DOWNLOAD_RUSTC"] = '1' run(args, env=env, verbose=build.verbose, is_bootstrap=True) |
