Commit 1b2cead1 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

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

parent 6b3b7eb6
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment