diff options
| author | Steven Fackler <[email protected]> | 2015-02-13 10:29:22 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-02-13 10:29:22 -0800 |
| commit | 94d7c1ff889b4438afad7bc8e3c69853e74a2571 (patch) | |
| tree | 7dbe92ac32507dd856b6319ea5b5d140d924b0f7 /openssl-sys/build.rs | |
| parent | Pass include directories to gcc (diff) | |
| download | rust-openssl-94d7c1ff889b4438afad7bc8e3c69853e74a2571.tar.xz rust-openssl-94d7c1ff889b4438afad7bc8e3c69853e74a2571.zip | |
Fix shim builds
gcc-rs adds the proper link commands for us
Diffstat (limited to 'openssl-sys/build.rs')
| -rw-r--r-- | openssl-sys/build.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/openssl-sys/build.rs b/openssl-sys/build.rs index f88a9cd6..9c90dfb3 100644 --- a/openssl-sys/build.rs +++ b/openssl-sys/build.rs @@ -60,7 +60,4 @@ fn build_old_openssl_shim(is_old: bool, include_paths: Vec<Path>) { config.file("src/old_openssl_shim.c") .compile("libold_openssl_shim.a"); - - let out_dir = env::var("OUT_DIR").unwrap(); - println!("cargo:rustc-flags=-L native={} -l old_openssl_shim:static", out_dir); } |