summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-03-02 12:52:52 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-03-02 12:52:52 (GMT)
commit2f78d874a75e8032b90997df3449040c941b1b5b (patch)
tree5408031de6c0e838e0de29ee010364a84f4010a3 /Source
parentf2922860c64d056a5d1cdb9ca350df738e52a029 (diff)
downloadCMake-2f78d874a75e8032b90997df3449040c941b1b5b.zip
CMake-2f78d874a75e8032b90997df3449040c941b1b5b.tar.gz
CMake-2f78d874a75e8032b90997df3449040c941b1b5b.tar.bz2
ENH: fix for bug 2921, move _OVERRIDE variable to a better position to allow changing _INIT variables
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalGenerator.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 9a4815f..49b0c55 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -430,13 +430,6 @@ cmGlobalGenerator::EnableLanguage(std::vector<std::string>const& languages,
{
mf->ReadListFile(0,projectCompatibility.c_str());
}
- // next load the file pointed to by CMAKE_USER_MAKE_RULES_OVERRIDE
- std::string userMakeRules =
- mf->GetSafeDefinition("CMAKE_USER_MAKE_RULES_OVERRIDE");
- if(userMakeRules.size())
- {
- mf->ReadListFile(0,userMakeRules.c_str());
- }
}
const char* cmGlobalGenerator::GetLanguageOutputExtensionForLanguage(const char* lang)