turn unprefixed request failure into a warning

This commit is contained in:
gnzlbg 2018-11-02 13:47:25 +01:00 committed by gnzlbg
parent 07764999bd
commit de2fd16d95
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ fn main() {
|| target.contains("musl")
|| target.contains("darwin"))
{
println!("Unprefixed malloc() requested on unsupported platform");
println!("cargo:warning=\"Unprefixed malloc() requested on unsupported platform\"");
use_prefix = true;
}