about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-04-24 18:00:26 +0200
committerGitHub <noreply@github.com>2022-04-24 18:00:26 +0200
commite1935cc1961ffd81a728589158b1ba982010564b (patch)
treede206a3f358bb6707c14a12a36bdd8279784fa55 /src/bootstrap
parent472404039e72dee0c23c7f58563e528c0f506f67 (diff)
parente95bda62f94e9eeeef38c0aa105ee0c85a82cc2f (diff)
downloadrust-e1935cc1961ffd81a728589158b1ba982010564b.tar.gz
rust-e1935cc1961ffd81a728589158b1ba982010564b.zip
Rollup merge of #96237 - AlecGoncharow:issue-96011-fix, r=Mark-Simulacrum
compiletest: combine `--*-python` args

Since these arguments are now always the same, combine them into a
singular `--python` argument.

Fixes #96011
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs4
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);