diff options
author | Brad King <brad.king@kitware.com> | 2001-04-09 14:31:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-04-09 14:31:36 (GMT) |
commit | e0da3ef275682626ec2e23d1abd6cca752882b47 (patch) | |
tree | 9a0e8ed9cc7a7fc8c3c07d89f255e08c33d257bb /Source/cmCableCommand.cxx | |
parent | e7bd5fcd19064480142aae2928189dc822fad47c (diff) | |
download | CMake-e0da3ef275682626ec2e23d1abd6cca752882b47.zip CMake-e0da3ef275682626ec2e23d1abd6cca752882b47.tar.gz CMake-e0da3ef275682626ec2e23d1abd6cca752882b47.tar.bz2 |
ERR: Corrected use of double-quotes to be compatible with UNIX make. Now double quotes (windows) or escape sequences for spaces (unix) are added when dependencies are output.
Diffstat (limited to 'Source/cmCableCommand.cxx')
-rw-r--r-- | Source/cmCableCommand.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmCableCommand.cxx b/Source/cmCableCommand.cxx index 03e0656..396a0fe 100644 --- a/Source/cmCableCommand.cxx +++ b/Source/cmCableCommand.cxx @@ -81,23 +81,23 @@ void cmCableCommand::SetupCableData() // We must add a custom rule to cause the cable_config.xml to be re-built // when it is removed. Rebuilding it means re-running CMake. - std::string cMakeLists = "\""; - cMakeLists += m_Makefile->GetStartDirectory(); + std::string cMakeLists = m_Makefile->GetStartDirectory(); cMakeLists += "/"; - cMakeLists += "CMakeLists.txt\""; + cMakeLists += "CMakeLists.txt"; std::string command; #if defined(_WIN32) && !defined(__CYGWIN__) command = "\""; command += m_Makefile->GetHomeDirectory(); - command += "/CMake/Source/CMakeSetupCMD\" "; + command += "/CMake/Source/CMakeSetupCMD\" \""; command += cMakeLists; - command += " -DSP"; + command += "\" -DSP"; #else command = "\""; command += m_Makefile->GetHomeOutputDirectory(); - command += "/CMake/Source/CMakeBuildTargets\" "; + command += "/CMake/Source/CMakeBuildTargets\" \""; command += cMakeLists; + command += "\""; #endif command += " -H\""; command += m_Makefile->GetHomeDirectory(); |