Convert the last --k=v flag to use flag_value

This commit is contained in:
David Tolnay 2024-04-06 12:21:06 -07:00
parent 5c607447c1
commit cfaac2f15c
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -480,7 +480,7 @@ fn needs_rustc_bootstrap() -> bool {
let mut cmd = Command::new(cargo_binary());
cmd.arg("rustc");
cmd.arg("-Zunstable-options");
cmd.arg("--print=sysroot");
cmd.flag_value("--print", "sysroot");
cmd.env("RUSTC_BOOTSTRAP", "1");
cmd.stdin(Stdio::null());
cmd.stderr(Stdio::null());