Skip to content

Commit 4ef4868

Browse files
committed
Use specific commit in PR
fa01d7d
1 parent 061a0df commit 4ef4868

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ const MKL_ARCHIVE: &'static str = "mkl.tar.xz";
2828

2929
fn main() {
3030
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
31-
let uri = format!("https://github.com/termoshtt/rust-intel-mkl/raw/master/mkl_lib/{}",
31+
let oid = "fa01d7dfb31f2ebedb59f2654fb85f4c0badce33";
32+
let uri = format!("https://github.com/termoshtt/rust-intel-mkl/raw/{}/mkl_lib/{}",
33+
oid,
3234
MKL_ARCHIVE);
3335
Command::new("wget")
3436
.args(&["-q", &uri, "-O", MKL_ARCHIVE])

0 commit comments

Comments
 (0)