From f6666ad19d2420d4e85b5ed0496c3372e67edfbe Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Tue, 8 Nov 2011 12:45:00 +0000 Subject: [PATCH] Configure: allow ./config to pass compiler flags with white spaces. --- Configure | 1 + 1 file changed, 1 insertion(+) 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=(.*)$/) -- 2.34.1