winedump: output Makefile.in the right way for the new build system

Austin English austinenglish at gmail.com
Fri Apr 16 15:21:50 CDT 2010


Otherwise make fails since it doesn't know what to do with @DEPENDENCIES at .

-- 
-Austin
-------------- next part --------------
diff --git a/tools/winedump/output.c b/tools/winedump/output.c
index c2a69d3..e0697f8 100644
--- a/tools/winedump/output.c
+++ b/tools/winedump/output.c
@@ -459,9 +459,7 @@ void  output_makefile (void)
   if (globals.forward_dll)
     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@  # everything below this line is overwritten by make depend",
+  fprintf (makefile, "\n\nC_SRCS = \\\n\t%s_main.c\n\n at MAKE_DLL_RULES@\n\n",
            OUTPUT_DLL_NAME);
 
   if (globals.forward_dll)


More information about the wine-patches mailing list