File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1019,7 +1019,7 @@ impl Build {
10191019
10201020 fn info ( & self , msg : & str ) {
10211021 match self . config . dry_run {
1022- DryRun :: SelfCheck => return ,
1022+ DryRun :: SelfCheck => ( ) ,
10231023 DryRun :: Disabled | DryRun :: UserSelected => {
10241024 println ! ( "{msg}" ) ;
10251025 }
Original file line number Diff line number Diff line change @@ -598,9 +598,9 @@ fn configure_cmake(
598598 } else if target. contains ( "linux" ) {
599599 cfg. define ( "CMAKE_SYSTEM_NAME" , "Linux" ) ;
600600 } else {
601- builder. info (
601+ builder. info ( & format ! (
602602 "could not determine CMAKE_SYSTEM_NAME from the target `{target}`, build may fail" ,
603- ) ;
603+ ) ) ;
604604 }
605605
606606 // When cross-compiling we should also set CMAKE_SYSTEM_VERSION, but in
You can’t perform that action at this time.
0 commit comments