diff options
author | Richard Levitte <levitte@openssl.org> | 2016-04-12 16:35:32 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-04-13 11:36:46 +0200 |
commit | da430a5555b97cc0fe5e9bf6cfd64be98e8b5bcb (patch) | |
tree | 60f15303afa962ffa28de6e50fc4c5a1e6ccda31 /Configure | |
parent | Remake the way dynamic zlib is loaded (diff) | |
download | openssl-da430a5555b97cc0fe5e9bf6cfd64be98e8b5bcb.tar.xz openssl-da430a5555b97cc0fe5e9bf6cfd64be98e8b5bcb.zip |
Fix the handling of --with-zlib-include
The handling was Unix centric, already in Configure. Change that to
just collect the value and let the build file templates figure out
what to do with it.
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -672,7 +672,7 @@ foreach (@argvcopy) } elsif (/^--with-zlib-include=(.*)$/) { - $withargs{zlib_include}="-I$1"; + $withargs{zlib_include}=$1; } elsif (/^--with-fipslibdir=(.*)$/) { |