From ef86438a109f7f7683bde078563750a3ed02994d Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Fri, 31 May 2019 19:08:58 -0700 Subject: [PATCH] Report the vendored install location Closes #1117 --- openssl-sys/build/find_vendored.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openssl-sys/build/find_vendored.rs b/openssl-sys/build/find_vendored.rs index bd5fbfb0..d3b97c35 100644 --- a/openssl-sys/build/find_vendored.rs +++ b/openssl-sys/build/find_vendored.rs @@ -4,6 +4,8 @@ use std::path::PathBuf; pub fn get_openssl(_target: &str) -> (PathBuf, PathBuf) { let artifacts = openssl_src::Build::new().build(); println!("cargo:vendored=1"); + println!("cargo:root={}", artifacts.lib_dir().parent().unwrap().display()); + ( artifacts.lib_dir().to_path_buf(), artifacts.include_dir().to_path_buf(),