diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-06-26 21:14:13 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-06-26 21:14:13 (GMT) |
commit | b459ac2a1ed847214411e15422b2afc8f35d85b5 (patch) | |
tree | 0cafe9849b048b0bc7cf6219f5a40b4407ad8350 /Source/cmGlobalGenerator.cxx | |
parent | acd71c8330ef7c9feb9da5a983a33f1b680ac83a (diff) | |
download | CMake-b459ac2a1ed847214411e15422b2afc8f35d85b5.zip CMake-b459ac2a1ed847214411e15422b2afc8f35d85b5.tar.gz CMake-b459ac2a1ed847214411e15422b2afc8f35d85b5.tar.bz2 |
COMP: fix broken tests for now
Alex
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 2731f13..e2a75ac 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -160,10 +160,10 @@ void cmGlobalGenerator::FindMakeProgram(cmMakefile* mf) // // CMakeSystem.cmake - configured file created by CMakeDetermineSystem.cmake // CMakeDetermineSystem.cmake - figure out os info and create -// CMakeSystem.cmake IF CMAKE_HOST_SYSTEM_NAME +// CMakeSystem.cmake IF CMAKE_SYSTEM_NAME // not set // CMakeSystem.cmake - configured file created by -// CMakeDetermineSystem.cmake IFF CMAKE_SYSTEM_LOADED +// CMakeDetermineSystem.cmake IF CMAKE_SYSTEM_LOADED // Next try and enable all languages found in the languages vector // @@ -243,7 +243,7 @@ cmGlobalGenerator::EnableLanguage(std::vector<std::string>const& languages, } // Load the CMakeDetermineSystem.cmake file and find out // what platform we are running on - if (!mf->GetDefinition("CMAKE_HOST_SYSTEM_NAME")) + if (!mf->GetDefinition("CMAKE_SYSTEM_NAME")) { #if defined(_WIN32) && !defined(__CYGWIN__) /* Windows version number data. */ |