Commit cc5d07fc authored by Alexandre Julliard's avatar Alexandre Julliard

makefiles: Don't add source dependency for symlinks.

parent 54633e39
......@@ -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 );
......
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