Alexandre Julliard : makefiles: Install only exe files in the bin directory.

Alexandre Julliard julliard at winehq.org
Thu Dec 12 16:29:39 CST 2019


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Dec 12 09:23:05 2019 +0100

makefiles: Install only exe files in the bin directory.

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

---

 tools/makedep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/makedep.c b/tools/makedep.c
index 825c83aed4..7451ee4433 100644
--- a/tools/makedep.c
+++ b/tools/makedep.c
@@ -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 ));




More information about the wine-cvs mailing list