Module: wine Branch: master Commit: cc5d07fc8a58f3f87137992247344cdbdad9ef8d URL: http://source.winehq.org/git/wine.git/?a=commit;h=cc5d07fc8a58f3f87137992247...
Author: Alexandre Julliard julliard@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@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 );