Module: wine Branch: master Commit: 9142716529f5a13b1f9166d84576d5f09837d8cd URL: http://source.winehq.org/git/wine.git/?a=commit;h=9142716529f5a13b1f9166d845...
Author: Rob Shearman rob@codeweavers.com Date: Wed Mar 21 12:35:43 2007 +0000
winedump: Fix the output for Makefile.in with respect to the dependencies line to match that required by the build system.
---
tools/winedump/output.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/tools/winedump/output.c b/tools/winedump/output.c index dff22be..1b325ff 100644 --- a/tools/winedump/output.c +++ b/tools/winedump/output.c @@ -440,7 +440,8 @@ void output_makefile (void) fprintf (makefile, " %s", globals.forward_dll);
fprintf (makefile, - "\n\nC_SRCS = \\n\t%s_main.c\n\n@MAKE_DLL_RULES@\n\n### Dependencies:", + "\n\nC_SRCS = \\n\t%s_main.c\n\n@MAKE_DLL_RULES@\n\n" + "@DEPENDENCIES@ # everything below this line is overwritten by make depend", OUTPUT_DLL_NAME);
if (globals.forward_dll)