summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-04-12 16:35:32 +0200
committerRichard Levitte <levitte@openssl.org>2016-04-13 11:36:46 +0200
commitda430a5555b97cc0fe5e9bf6cfd64be98e8b5bcb (patch)
tree60f15303afa962ffa28de6e50fc4c5a1e6ccda31 /Configure
parent5a5c0b953f8f97b4e604da494a65de034bbaaceb (diff)
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-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 8e42ebf170..4e0e34298c 100755
--- a/Configure
+++ b/Configure
@@ -672,7 +672,7 @@ foreach (@argvcopy)
}
elsif (/^--with-zlib-include=(.*)$/)
{
- $withargs{zlib_include}="-I$1";
+ $withargs{zlib_include}=$1;
}
elsif (/^--with-fipslibdir=(.*)$/)
{