fix log formatting in bootstrap

This commit is contained in:
Goldstein 2023-09-06 10:14:09 +03:00
parent 51a9df8c70
commit e0593f30fb
No known key found for this signature in database
GPG Key ID: DE6031ABA0BB269A
2 changed files with 3 additions and 3 deletions

View File

@ -1019,7 +1019,7 @@ impl Build {
fn info(&self, msg: &str) {
match self.config.dry_run {
DryRun::SelfCheck => return,
DryRun::SelfCheck => (),
DryRun::Disabled | DryRun::UserSelected => {
println!("{msg}");
}

View File

@ -598,9 +598,9 @@ fn configure_cmake(
} else if target.contains("linux") {
cfg.define("CMAKE_SYSTEM_NAME", "Linux");
} else {
builder.info(
builder.info(&format!(
"could not determine CMAKE_SYSTEM_NAME from the target `{target}`, build may fail",
);
));
}
// When cross-compiling we should also set CMAKE_SYSTEM_VERSION, but in