makefiles: Don't use custom LDFLAGS to link dlls.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ee7efd76f2
commit
21e1018ebd
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue