1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 17:28:47 +00:00

makefiles: Don't add source dependency for symlinks.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2015-10-29 23:57:53 +09:00
parent 54633e3956
commit cc5d07fc8a

View File

@ -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 );