Skip to content

Commit dafe47b

Browse files
author
Jorge Aparicio
committed
fix build.rs
we don't want to match musleabihf targets
1 parent 384c48c commit dafe47b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::env;
22

33
fn main() {
4-
if env::var("TARGET").unwrap().ends_with("hf") {
4+
if env::var("TARGET").unwrap().ends_with("gnueabihf") {
55
println!("cargo:rustc-cfg=gnueabihf")
66
}
77
}

0 commit comments

Comments
 (0)