Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #14637 - nyurik:patch-1, r=weihanglo
Fix `cargo:version_number` - has only one `:` See [openssl code](https://github.com/sfackler/rust-openssl/blob/8d60e211460122768a1deab0549e35577a52dbeb/openssl-sys/build/main.rs#L392) -- it uses a single colon. Also inlined arg into format to make it a bit more consice. ```rust let openssl_version = openssl_version.unwrap(); println!("cargo:version_number={:x}", openssl_version); if openssl_version >= 0x4_00_00_00_0 { ... ```
- Loading branch information