diff options
author | Brad King <brad.king@kitware.com> | 2005-08-08 15:28:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-08-08 15:28:28 (GMT) |
commit | d6a3268b3ed71ce36ce78f3a20b01a7eabe7601d (patch) | |
tree | d4b70c82adf8609477d522946922c727053b330d /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | f7d26c4ab9f7ef450101f1b098c02ee326380ee3 (diff) | |
download | CMake-d6a3268b3ed71ce36ce78f3a20b01a7eabe7601d.zip CMake-d6a3268b3ed71ce36ce78f3a20b01a7eabe7601d.tar.gz CMake-d6a3268b3ed71ce36ce78f3a20b01a7eabe7601d.tar.bz2 |
BUG: Do not escape CMAKE_COMMAND twice.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 44dce7e..a6e5391 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -930,8 +930,7 @@ cmLocalUnixMakefileGenerator3 } std::string cmakecommand = - this->ConvertToOutputForExisting( - m_Makefile->GetRequiredDefinition("CMAKE_COMMAND")); + m_Makefile->GetRequiredDefinition("CMAKE_COMMAND"); makefileStream << "# The CMake executable.\n" << "CMAKE_COMMAND = " |