Skip to content

Commit

Permalink
Fixed conversion of '/' to '\' inside URLs in Makefile on MSWin32 pla…
Browse files Browse the repository at this point in the history
…tform.

Signed-off-by: Moritz Lenz <moritz@faui2k3.org>
  • Loading branch information
ujwalic authored and moritz committed Mar 11, 2009
1 parent 7edb29f commit ea32839
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 ea32839

Please sign in to comment.