commit | 5f4f2c0b9268427ebc91a7fb4118850b44d65713 | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Thu Apr 24 23:43:04 2008 +0200 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Apr 24 23:43:04 2008 +0200 |
tree | 8d082afe2ae197c22b4dcedb8f3a0feff2a4b381 | |
parent | 59ef3c920d2eb0f43d28387b78cf73c31aed3bff [diff] [blame] |
makedep: Don't try to open .tlb files.
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 @@ 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;