diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-02 12:52:52 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-02 12:52:52 (GMT) |
commit | 2f78d874a75e8032b90997df3449040c941b1b5b (patch) | |
tree | 5408031de6c0e838e0de29ee010364a84f4010a3 /Source | |
parent | f2922860c64d056a5d1cdb9ca350df738e52a029 (diff) | |
download | CMake-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.cxx | 7 |
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) |