mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Make build system more independent of current directory.
This commit is contained in:
parent
ff4877b473
commit
cc4ea7507f
8 changed files with 14 additions and 9 deletions
|
@ -99,7 +99,7 @@ fn run_test(file: String) {
|
|||
let stderr = InheritFd(2);
|
||||
let args = ["-z", "-f", infile.as_slice()];
|
||||
|
||||
let mut prc = match Command::new("components/servo/target/servo")
|
||||
let mut prc = match Command::new(os::self_exe_path().unwrap().join("servo"))
|
||||
.args(args)
|
||||
.stdin(Ignored)
|
||||
.stdout(stdout)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue