Pārlūkot izejas kodu

fix build.rs

we don't want to match musleabihf targets
Jorge Aparicio 8 gadi atpakaļ
vecāks
revīzija
dafe47bc2b
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      build.rs

+ 1 - 1
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")
     }
 }