summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2011-11-08 12:45:00 +0000
committerAndy Polyakov <appro@openssl.org>2011-11-08 12:45:00 +0000
commitf6666ad19d2420d4e85b5ed0496c3372e67edfbe (patch)
treed2df0b39d0c1b892cbe397e331887433d195138e /Configure
parentd43a7f2cc6dd036de9691e814cf4f0d26c7cf46d (diff)
Configure: allow ./config to pass compiler flags with white spaces.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/Configure b/Configure
index 10ef8cd115..6f85a3b36f 100755
--- a/Configure
+++ b/Configure
@@ -906,6 +906,7 @@ EOF
}
elsif (/^-[^-]/ or /^\+/)
{
+ $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
$flags.=$_." ";
}
elsif (/^--prefix=(.*)$/)