From ea3283983825a3adc46e5e2e04e286f8ebf178eb Mon Sep 17 00:00:00 2001 From: Ujwal Reddy Malipeddi Date: Thu, 12 Mar 2009 03:30:20 +0530 Subject: [PATCH] Fixed conversion of '/' to '\' inside URLs in Makefile on MSWin32 platform. Signed-off-by: Moritz Lenz --- Configure.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/Configure.pl b/Configure.pl index a32d008a71a..fb64bbe3cf2 100644 --- a/Configure.pl +++ b/Configure.pl @@ -112,6 +112,7 @@ sub create_makefile { $maketext =~ s/@(\w+)@/$config{$1}/g; if ($^O eq 'MSWin32') { $maketext =~ s{/}{\\}g; + $maketext =~ s{http:\S+}{ do {my $t = $&; $t =~ s'\\'/'g; $t} }eg; } my $outfile = 'Makefile';