File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ pub fn download(out_dir: &Path) -> Result<PathBuf> {
16
16
let buf = ureq:: get ( & openblas_source_url ( ) ) . call ( ) ?. into_reader ( ) ;
17
17
let gz_stream = flate2:: read:: GzDecoder :: new ( buf) ;
18
18
let mut ar = tar:: Archive :: new ( gz_stream) ;
19
- ar. unpack ( & out_dir) ?;
19
+ ar. unpack ( out_dir) ?;
20
20
assert ! ( dest. exists( ) ) ;
21
21
}
22
22
Ok ( dest)
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ fn build() {
174
174
}
175
175
176
176
let source = openblas_build:: download ( & output) . unwrap ( ) ;
177
- let deliv = cfg. build ( & source, & output) . unwrap ( ) ;
177
+ let deliv = cfg. build ( source, & output) . unwrap ( ) ;
178
178
179
179
println ! ( "cargo:rustc-link-search={}" , output. display( ) ) ;
180
180
for search_path in & deliv. make_conf . c_extra_libs . search_paths {
You can’t perform that action at this time.
0 commit comments