diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2025-05-27 20:31:21 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2025-05-27 20:31:21 +0300 |
| commit | 043b164b3b64d5d1c8ec3ffd5bc594d1360ee464 (patch) | |
| tree | 4018c16bc8847071cd06df596e01760ace128682 /src/bootstrap/bootstrap.py | |
| parent | 642e49bfed2481e54e252732be20d3c24cbec9e8 (diff) | |
| download | rust-043b164b3b64d5d1c8ec3ffd5bc594d1360ee464.tar.gz rust-043b164b3b64d5d1c8ec3ffd5bc594d1360ee464.zip | |
bootstrap: Remove `bin_root` from `PATH`
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 42ad14a81d0..c60c6b8db64 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -1118,7 +1118,6 @@ class RustBuild(object): if "RUSTFLAGS_BOOTSTRAP" in env: env["RUSTFLAGS"] += " " + env["RUSTFLAGS_BOOTSTRAP"] - env["PATH"] = os.path.join(self.bin_root(), "bin") + os.pathsep + env["PATH"] if not os.path.isfile(self.cargo()): raise Exception("no cargo executable found at `{}`".format(self.cargo())) args = [ |
