We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f0d796 commit 585abffCopy full SHA for 585abff
hdf5-conda/build.rs
@@ -75,9 +75,9 @@ const DOWNLOAD_BINARY: &str = {
75
"linux-64/hdf5-1.12.1-nompi_h2750804_102.tar.bz2"
76
} else if #[cfg(all(target_os = "linux", target_arch = "aarch64"))] {
77
"linux-aarch64/hdf5-1.12.1-nompi_h774d4d8_102.tar.bz2"
78
- } else if #[cfg(any(target_os = "macos", target_arch = "x86_64"))] {
+ } else if #[cfg(all(target_os = "macos", target_arch = "x86_64"))] {
79
"osx-64/hdf5-1.12.1-nompi_h2f0ef1a_102.tar.bz2"
80
- } else if #[cfg(any(target_os = "windows", target_arch = "x86_64"))] {
+ } else if #[cfg(all(target_os = "windows", target_arch = "x86_64"))] {
81
"win-64/hdf5-1.12.1-nompi_h57737ce_102.tar.bz2"
82
} else {
83
compile_error!("This package can not be used on this arch");
0 commit comments