From 2ff2329ed32923f4d8e770bc2041ec3502460f40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sun, 23 Sep 2007 13:10:51 +0000 Subject: [PATCH] Remove useless code svn path=/trunk/; revision=29159 --- reactos/tools/rbuild/backend/mingw/mingw.cpp | 9 --------- reactos/tools/rbuild/backend/mingw/mingw.h | 1 - 2 files changed, 10 deletions(-) diff --git a/reactos/tools/rbuild/backend/mingw/mingw.cpp b/reactos/tools/rbuild/backend/mingw/mingw.cpp index 839513260a5..9e7bd06c2a7 100644 --- a/reactos/tools/rbuild/backend/mingw/mingw.cpp +++ b/reactos/tools/rbuild/backend/mingw/mingw.cpp @@ -755,15 +755,6 @@ MingwBackend::CheckAutomaticDependencies () } } -bool -MingwBackend::IncludeDirectoryTarget ( const string& directory ) const -{ - if ( directory == "$(INTERMEDIATE)" + sSep + "tools") - return false; - else - return true; -} - void MingwBackend::GenerateDirectories () { diff --git a/reactos/tools/rbuild/backend/mingw/mingw.h b/reactos/tools/rbuild/backend/mingw/mingw.h index a561a40a00b..65e61e86c03 100644 --- a/reactos/tools/rbuild/backend/mingw/mingw.h +++ b/reactos/tools/rbuild/backend/mingw/mingw.h @@ -88,7 +88,6 @@ private: std::string GetProxyMakefileTree () const; void GenerateProxyMakefiles (); void CheckAutomaticDependencies (); - bool IncludeDirectoryTarget ( const std::string& directory ) const; bool TryToDetectThisCompiler ( const std::string& compiler ); void DetectCompiler (); std::string GetCompilerVersion ( const std::string& compilerCommand );