BUG: Need to use the CMAKE_COMMAND cache entry to get the location of CMake.

This commit is contained in:
Brad King 2006-02-28 09:53:32 -05:00
parent 36d7f3990a
commit 7db64cdb28
1 changed files with 1 additions and 1 deletions

View File

@ -1253,7 +1253,7 @@ void cmGlobalGenerator::CreateDefaultGlobalTargets(cmTargets* targets)
singleLine.erase(singleLine.begin(), singleLine.end());
depends.erase(depends.begin(), depends.end());
const char* cmakeCommand = this->GetCMakeInstance()->GetCMakeCommand();
const char* cmakeCommand = mf->GetRequiredDefinition("CMAKE_COMMAND");
// Use CMAKE_EDIT_COMMAND for the edit_cache rule if it is defined.
// Otherwise default to the interactive command-line interface.
if(mf->GetDefinition("CMAKE_EDIT_COMMAND"))