Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed conversion of '/' to '\' inside URLs in Makefile on MSWin32 pla…
…tform.
  • Loading branch information
ujwalic committed Mar 11, 2009
1 parent 9844bf0 commit 6967c32
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Configure.pl
Expand Up @@ -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';
Expand Down

0 comments on commit 6967c32

Please sign in to comment.