Disable ninja on the dry-run builder

This commit is contained in:
Josh Triplett 2020-08-28 07:20:50 -07:00
parent f758c7b2a7
commit 8b501e33e5

View file

@ -8,6 +8,7 @@ fn configure(host: &[&str], target: &[&str]) -> Config {
config.save_toolstates = None; config.save_toolstates = None;
config.skip_only_host_steps = false; config.skip_only_host_steps = false;
config.dry_run = true; config.dry_run = true;
config.ninja = false;
// try to avoid spurious failures in dist where we create/delete each others file // try to avoid spurious failures in dist where we create/delete each others file
let dir = config let dir = config
.out .out