mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Fix build failure when n2 installed but ninja not
This commit is contained in:
parent
1be9c36863
commit
1ae60a3bb0
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ fn setup_build_root() -> &'static Utf8Path {
|
|||
}
|
||||
|
||||
fn maybe_reconfigure_build(build_file: &Utf8Path, path: &str) {
|
||||
let output = Command::new("ninja")
|
||||
let output = Command::new(get_ninja_command())
|
||||
.arg("-f")
|
||||
.arg(build_file)
|
||||
.arg("build_run_configure")
|
||||
|
|
Loading…
Reference in a new issue