From dafe47bc2ba8715f8379c07dcbd9654dd541f187 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 22 Sep 2016 11:56:34 -0500 Subject: [PATCH] fix build.rs we don't want to match musleabihf targets --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 1ff0c06..298b656 100644 --- a/build.rs +++ b/build.rs @@ -1,7 +1,7 @@ use std::env; fn main() { - if env::var("TARGET").unwrap().ends_with("hf") { + if env::var("TARGET").unwrap().ends_with("gnueabihf") { println!("cargo:rustc-cfg=gnueabihf") } }