Skip to content

Commit

Permalink
[config] Configure needs to translate forward slashes in makefile to …
Browse files Browse the repository at this point in the history
…backwards ones for Win32, as Parrot's Configure did. Otherwise the build silently misses a bunch of important bits!
  • Loading branch information
jnthn committed Feb 11, 2009
1 parent e73c958 commit 7b4118d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Configure.pl
Expand Up @@ -98,6 +98,10 @@ sub create_makefile {
close $ROOTIN;
$maketext =~ s/@(\w+)@/$config{$1}/g;

if ($^O eq 'MSWin32') {
$maketext =~ s{/}{\\}g;
}

print "Creating Makefile\n";
open(MAKEFILE, ">Makefile") ||
die "Unable to write Makefile\n";
Expand Down

0 comments on commit 7b4118d

Please sign in to comment.