Skip to content

Commit

Permalink
Use specific commit in PR
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Sep 6, 2017
1 parent 061a0df commit 4ef4868
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ const MKL_ARCHIVE: &'static str = "mkl.tar.xz";

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

0 comments on commit 4ef4868

Please sign in to comment.