msvcmaker: Fix msvc project file generation under MinGW32.

When converting a makefile to a msvc .dsp file, if a line is ended with
a back slash, it will be joined with next line. This patch changes the
joining character from '\n' to a space in order to fix the bug of 
running MinGW32 on Windows.
This commit is contained in:
Hongbo Ni 2008-08-06 10:20:40 +10:00 committed by Alexandre Julliard
parent 4421e3ebe5
commit e0df1b9e57
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ MAKEFILE_IN: foreach my $makefile_in_file (@makefile_in_files) {
chomp $line;
if($lookahead) {
$lookahead = 0;
$_ .= "\n" . $line;
$_ .= " " . $line;
} else {
$_ = $line;
}