Module: wine Branch: master Commit: 4d13f84903eb227acabeaa90beac3d59dd6f8f31 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4d13f84903eb227acabeaa90be... Author: Sergey Guralnik <serhio(a)etersoft.ru> Date: Wed Jan 8 12:56:26 2014 +0200 winedump: Get rid of the MAKE_DLL_RULES in the Makefile.in template. --- tools/winedump/output.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/winedump/output.c b/tools/winedump/output.c index c7804d0..aff7f66 100644 --- a/tools/winedump/output.c +++ b/tools/winedump/output.c @@ -457,8 +457,7 @@ void output_makefile (void) if (globals.forward_dll) fprintf (makefile, "IMPORTS = %s", globals.forward_dll); - fprintf (makefile, "\n\nC_SRCS = \\\n\t%s_main.c\n\n(a)MAKE_DLL_RULES@\n\n", - OUTPUT_DLL_NAME); + fprintf (makefile, "\n\nC_SRCS = \\\n\t%s_main.c\n", OUTPUT_DLL_NAME); if (globals.forward_dll) fprintf (specfile,"#import %s.dll\n", globals.forward_dll);