makedep: Fix install rule for .idl files.

Vincent Povirk madewokherd at gmail.com
Thu Nov 5 14:33:50 CST 2015


-------------- next part --------------
From 0f70fc6d5ff286c6e71902200a8a59e820ddb65b Mon Sep 17 00:00:00 2001
From: Vincent Povirk <vincent at codeweavers.com>
Date: Wed, 4 Nov 2015 13:05:17 -0600
Subject: [PATCH 1/2] makedep: Fix install rule for .idl files.

Signed-off-by: Vincent Povirk <vincent at codeweavers.com>
---
 tools/makedep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/makedep.c b/tools/makedep.c
index 7ce6a0a..c96bf46 100644
--- a/tools/makedep.c
+++ b/tools/makedep.c
@@ -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)
-- 
2.1.4



More information about the wine-patches mailing list