diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-05-12 15:24:23 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-05-12 15:24:23 (GMT) |
commit | 4a701917a477546ffdb0180b2565cf57e9d5e779 (patch) | |
tree | 049d81042f4a8803b4831de5a8e96a5a95183e51 /Source/cmake.cxx | |
parent | 52fc539e4ec665e4ebe447948fd200c7ff3af940 (diff) | |
download | CMake-4a701917a477546ffdb0180b2565cf57e9d5e779.zip CMake-4a701917a477546ffdb0180b2565cf57e9d5e779.tar.gz CMake-4a701917a477546ffdb0180b2565cf57e9d5e779.tar.bz2 |
BUG: fix bad generator name
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 898b6f2..33962ff 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1111,7 +1111,7 @@ int cmake::Configure() } this->SetGlobalGenerator(gen); #else - this->SetGlobalGenerator(new cmGlobalUnixMakefileGenerator2); + this->SetGlobalGenerator(new cmGlobalUnixMakefileGenerator); #endif } if(!m_GlobalGenerator) |