Alexandre Julliard : makefiles: Don't use custom LDFLAGS to link dlls.

Alexandre Julliard julliard at winehq.org
Wed May 1 16:37:06 CDT 2019


Module: wine
Branch: master
Commit: 21e1018ebdbe3d7d1b3f657c14105f8e6ce67474
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=21e1018ebdbe3d7d1b3f657c14105f8e6ce67474

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed May  1 17:40:33 2019 +0200

makefiles: Don't use custom LDFLAGS to link dlls.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 tools/makedep.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tools/makedep.c b/tools/makedep.c
index f5c5e0a..b932b9c 100644
--- a/tools/makedep.c
+++ b/tools/makedep.c
@@ -2945,7 +2945,6 @@ static void output_source_spec( struct makefile *make, struct incl_file *source,
     output_filename( source->filename );
     output_filename( obj_name );
     output_filenames( all_libs );
-    output_filename( "$(LDFLAGS)" );
     output( "\n" );
 }
 
@@ -3171,7 +3170,6 @@ static void output_module( struct makefile *make )
     output_filenames_obj_dir( make, need_cross ? make->crossobj_files : make->object_files );
     output_filenames_obj_dir( make, make->res_files );
     output_filenames( all_libs );
-    output_filename( "$(LDFLAGS)" );
     output( "\n" );
 
     if (spec_file && make->importlib)
@@ -3320,7 +3318,6 @@ static void output_test_module( struct makefile *make )
     output_filenames_obj_dir( make, crosstarget ? make->crossobj_files : make->object_files );
     output_filenames_obj_dir( make, make->res_files );
     output_filenames( all_libs );
-    output_filename( "$(LDFLAGS)" );
     output( "\n" );
     output( "%s%s:\n", obj_dir_path( make, stripped ), ext );
     output_winegcc_command( make, !!crosstarget );
@@ -3330,7 +3327,6 @@ static void output_test_module( struct makefile *make )
     output_filenames_obj_dir( make, crosstarget ? make->crossobj_files : make->object_files );
     output_filenames_obj_dir( make, make->res_files );
     output_filenames( all_libs );
-    output_filename( "$(LDFLAGS)" );
     output( "\n" );
     output( "%s%s %s%s:", obj_dir_path( make, testmodule ), ext, obj_dir_path( make, stripped ), ext );
     output_filenames_obj_dir( make, crosstarget ? make->crossobj_files : make->object_files );




More information about the wine-cvs mailing list