Alexandre Julliard : makefiles: Don't add source dependency for symlinks.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Oct 30 08:22:25 CDT 2015


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Oct 29 23:57:53 2015 +0900

makefiles: Don't add source dependency for symlinks.

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 30bbc3e..2c2a97d 100644
--- a/tools/makedep.c
+++ b/tools/makedep.c
@@ -1796,7 +1796,7 @@ static void output_install_rules( struct makefile *make, struct strarray files,
     if (!files.count) return;
 
     for (i = 0; i < files.count; i += 2)
-        if (files.str[i + 1][0] >= 'a' && files.str[i + 1][0] <= 'z')  /* only for files in object dir */
+        if (strchr( "dps", files.str[i + 1][0] ))  /* only for files copied from object dir */
             strarray_add_uniq( &targets, files.str[i] );
 
     output( "install %s::", target );




More information about the wine-cvs mailing list