We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45190d4 commit 08668f1Copy full SHA for 08668f1
hts-sys/build.rs
@@ -100,17 +100,10 @@ fn main() {
100
101
!Command::new("./configure")
102
.current_dir(out.join("htslib"))
103
- .arg("install")
104
.env("CFLAGS", &cc_cflags)
105
.arg(format!("--host={}", &host))
106
- .status().unwrap().success()
107
- &&
108
-
109
- !Command::new("./configure")
110
- .current_dir(out.join("htslib"))
111
112
.arg(format!("--prefix={}/local", home_dir().unwrap().into_os_string().into_string().unwrap()))
113
+ .status().unwrap().success()
114
{
115
panic!("could not configure htslib nor any of its plugins")
116
}
0 commit comments