summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-08-08 15:28:28 (GMT)
committerBrad King <brad.king@kitware.com>2005-08-08 15:28:28 (GMT)
commitd6a3268b3ed71ce36ce78f3a20b01a7eabe7601d (patch)
treed4b70c82adf8609477d522946922c727053b330d /Source/cmLocalUnixMakefileGenerator3.cxx
parentf7d26c4ab9f7ef450101f1b098c02ee326380ee3 (diff)
downloadCMake-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.cxx3
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 = "