Commit d37f4121 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

makedep: Fix install rule for .idl files.

parent bfb845f9
......@@ -2104,7 +2104,7 @@ static struct strarray output_sources( struct makefile *make, struct strarray *t
if (source->file->flags & FLAG_IDL_PROXY) strarray_add( &dlldata_files, source->name );
if (source->file->flags & FLAG_INSTALL)
{
strarray_add( &make->install_dev_rules, xstrdup( source->filename ));
strarray_add( &make->install_dev_rules, xstrdup( source->name ));
strarray_add( &make->install_dev_rules,
strmake( "D$(includedir)/%s.idl", get_include_install_path( obj ) ));
if (source->file->flags & FLAG_IDL_HEADER)
......
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