From 66469de60634effb9c37ec1e2afa0fab771c403b Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Sat, 11 Aug 2007 21:42:02 +0000 Subject: [PATCH] put typelibs which are embedded in win32dlls into $(INTERMEDIATE) svn path=/trunk/; revision=28295 --- reactos/tools/rbuild/backend/mingw/modulehandler.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp index 03d63f6536a..f26f96ce762 100644 --- a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp +++ b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp @@ -1272,8 +1272,11 @@ MingwModuleHandler::GenerateWidlCommandsEmbeddedTypeLib ( dependencies += " " + NormalizeFilename ( module.xmlbuildFile ); string basename = GetBasename ( filename ); - string EmbeddedTypeLibFilename = basename + ".tlb"; - + + string EmbeddedTypeLibFilename = PassThruCacheDirectory ( + basename + ".tlb", + backend->intermediateDirectory ); + fprintf ( fMakefile, "%s: %s $(WIDL_TARGET) | %s\n", GetTargetMacro ( module ).c_str (),