diff options
| author | Alec Goncharow <algo@cloudflare.com> | 2022-04-19 21:01:13 -0400 |
|---|---|---|
| committer | Alec Goncharow <algo@cloudflare.com> | 2022-04-19 21:27:40 -0400 |
| commit | e95bda62f94e9eeeef38c0aa105ee0c85a82cc2f (patch) | |
| tree | 78936e47787b195d7bd1d8d1a96482f464eb97b0 /src/bootstrap | |
| parent | 4ca19e09d302a4cbde14f9cb1bc109179dc824cd (diff) | |
| download | rust-e95bda62f94e9eeeef38c0aa105ee0c85a82cc2f.tar.gz rust-e95bda62f94e9eeeef38c0aa105ee0c85a82cc2f.zip | |
compiletest: combine `--*-python` args
Since these arguments are now always the same, combine them into a singular `--python` argument.
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/test.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index da468909811..9c376602d28 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -1400,9 +1400,7 @@ note: if you're sure you want to do this, please open an issue as to why. In the targetflags.extend(builder.lld_flags(target)); cmd.arg("--target-rustcflags").arg(targetflags.join(" ")); - cmd.arg("--docck-python").arg(builder.python()); - - cmd.arg("--lldb-python").arg(builder.python()); + cmd.arg("--python").arg(builder.python()); if let Some(ref gdb) = builder.config.gdb { cmd.arg("--gdb").arg(gdb); |
