Skip to content

Commit

Permalink
Unrolled build for rust-lang#134816
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#134816 - Integral-Tech:pathbuf-refactor, r=lqd

tools: fix build failure caused by PR rust-lang#134420

Someone reports build failure after merging pull request rust-lang#134420: rust-lang#134420 (comment)

This pull request fixes the build failure.
  • Loading branch information
rust-timer authored Dec 27, 2024
2 parents 42591a4 + c5e4b72 commit 8cc9268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/rustc-perf-wrapper/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::fs::create_dir_all;
use std::path::PathBuf;
use std::path::{Path, PathBuf};
use std::process::Command;

use clap::Parser;
Expand Down Expand Up @@ -169,7 +169,7 @@ fn execute_benchmark(cmd: &mut Command, compiler: &Path) {

const MANIFEST_DIR: &str = env!("CARGO_MANIFEST_DIR");

let rustc_perf_dir = PathBuf::from(MANIFEST_DIR).join("../rustc-perf");
let rustc_perf_dir = Path::new(MANIFEST_DIR).join("../rustc-perf");

// We need to set the working directory to `src/tools/perf`, so that it can find the directory
// with compile-time benchmarks.
Expand Down

0 comments on commit 8cc9268

Please sign in to comment.