1
Fork 0

yet another dry run fix

This commit is contained in:
Pietro Albini 2023-06-14 15:14:19 +02:00
parent 47b6732766
commit f67809ac1d
No known key found for this signature in database
GPG key ID: CD76B35F7734769E

View file

@ -170,6 +170,10 @@ fn make_win_dist(
target: TargetSelection,
builder: &Builder<'_>,
) {
if builder.config.dry_run() {
return;
}
//Ask gcc where it keeps its stuff
let mut cmd = Command::new(builder.cc(target));
cmd.arg("-print-search-dirs");