Commit ef2475b4 authored by Alexandre Julliard's avatar Alexandre Julliard

makefiles: Install only exe files in the bin directory.

parent ee9beb58
......@@ -3364,7 +3364,7 @@ static void output_module( struct makefile *make )
if (spec_file)
output_man_pages( make );
else if (*dll_ext && !make->is_win16)
else if (*dll_ext && !make->is_win16 && strendswith( make->module, ".exe" ))
{
char *binary = replace_extension( make->module, ".exe", "" );
add_install_rule( make, binary, "wineapploader", strmake( "t$(bindir)/%s", binary ));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment