winedump: Fix the output for Makefile.in with respect to the dependencies line to match that required by the build system.

Robert Shearman rob at codeweavers.com
Wed Mar 21 07:35:43 CDT 2007


---
  tools/winedump/output.c |    3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)
-------------- next part --------------
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 at MAKE_DLL_RULES@\n\n### Dependencies:",
+           "\n\nC_SRCS = \\\n\t%s_main.c\n\n at MAKE_DLL_RULES@\n\n"
+           "@DEPENDENCIES@  # everything below this line is overwritten by make depend",
            OUTPUT_DLL_NAME);
 
   if (globals.forward_dll)


More information about the wine-patches mailing list