From: Andy Polyakov Date: Tue, 8 Nov 2011 12:45:00 +0000 (+0000) Subject: Configure: allow ./config to pass compiler flags with white spaces. X-Git-Tag: master-post-reformat~2104 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f6666ad19d2420d4e85b5ed0496c3372e67edfbe;p=oweals%2Fopenssl.git Configure: allow ./config to pass compiler flags with white spaces. --- 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=(.*)$/)