msvcmaker: Fix the arguments passed to winebuild to generate the .def file.

This commit is contained in:
Rob Shearman 2008-09-25 16:42:56 +01:00 committed by Alexandre Julliard
parent 6b3b7eb6a2
commit 1b2cead10b
1 changed files with 1 additions and 1 deletions

View File

@ -785,7 +785,7 @@ sub _generate_dsp($$) {
print OUT "InputPath=$spec_file\r\n";
print OUT "\r\n";
print OUT "BuildCmds= \\\r\n";
print OUT "\t..\\..\\tools\\winebuild\\$output_dir\\winebuild.exe --def $spec_file > $def_file\r\n";
print OUT "\t..\\..\\tools\\winebuild\\$output_dir\\winebuild.exe -w --def -o $def_file --export $spec_file\r\n";
print OUT "\r\n";
print OUT "\"$def_file\" : \$(SOURCE) \"\$(INTDIR)\" \"\$(OUTDIR)\"\r\n";
print OUT " \$(BuildCmds)\r\n";