Module: wine Branch: master Commit: 5f4f2c0b9268427ebc91a7fb4118850b44d65713 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5f4f2c0b9268427ebc91a7fb41...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Apr 24 23:43:04 2008 +0200
makedep: Don't try to open .tlb files.
---
tools/makedep.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/tools/makedep.c b/tools/makedep.c index e311058..d7f820e 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -727,6 +727,13 @@ static void parse_file( INCL_FILE *pFile, int src ) return; }
+ /* don't try to open .tlb files */ + if (strendswith( pFile->name, ".tlb" )) + { + pFile->filename = xstrdup( pFile->name ); + return; + } + file = src ? open_src_file( pFile ) : open_include_file( pFile ); if (!file) return;