From 5ce17b05d1cbea774a2fc7893608221df41987d2 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Thu, 20 Jan 2005 23:05:36 +0000 Subject: [PATCH] Modules are built in the intermediate directory. svn path=/branches/xmlbuildsystem/; revision=13171 --- reactos/tools/rbuild/backend/mingw/mingw.cpp | 2 +- reactos/tools/rbuild/backend/mingw/modulehandler.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/tools/rbuild/backend/mingw/mingw.cpp b/reactos/tools/rbuild/backend/mingw/mingw.cpp index 7d2a652a034..e9c9308cf89 100644 --- a/reactos/tools/rbuild/backend/mingw/mingw.cpp +++ b/reactos/tools/rbuild/backend/mingw/mingw.cpp @@ -221,7 +221,7 @@ MingwBackend::ProcessModule ( Module& module ) module.node.location, module.type ); h->Process ( module ); - h->GenerateDirectoryTargets (); + h->GenerateDirectoryTargets (); } string diff --git a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp index c16173f7a6e..d750157821d 100644 --- a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp +++ b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp @@ -946,7 +946,7 @@ MingwModuleHandler::GenerateMacrosAndTargets ( module.name.c_str () ); fprintf ( fMakefile, "%s: %s\n\n", module.name.c_str (), - module.GetPath ().c_str () ); + FixupTargetFilename ( module.GetPath () ).c_str () ); // future references to the macros will be to get their values cflagsMacro = ssprintf ("$(%s)", cflagsMacro.c_str ());