diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-06-26 17:23:55 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-06-26 17:23:55 (GMT) |
commit | c84f6448a64a960c4bf7fb59e313b8afaea3c4e9 (patch) | |
tree | faf584a2d259a62a8f0681ebbcf845b612ecf300 /Source/cmBuildCommand.cxx | |
parent | 43ac1a3a86193fa72795e98e2d51d3f48209082b (diff) | |
download | CMake-c84f6448a64a960c4bf7fb59e313b8afaea3c4e9.zip CMake-c84f6448a64a960c4bf7fb59e313b8afaea3c4e9.tar.gz CMake-c84f6448a64a960c4bf7fb59e313b8afaea3c4e9.tar.bz2 |
modified how paths are escaped, added depends
Diffstat (limited to 'Source/cmBuildCommand.cxx')
-rw-r--r-- | Source/cmBuildCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmBuildCommand.cxx b/Source/cmBuildCommand.cxx index 2f3d68f..1f06b95 100644 --- a/Source/cmBuildCommand.cxx +++ b/Source/cmBuildCommand.cxx @@ -66,7 +66,7 @@ bool cmBuildCommand::InitialPass(std::vector<std::string>& args) makecommand += "\""; makecommand += " "; makecommand += m_Makefile->GetProjectName(); - makecommand += ".dsw /MAKE \"ALL_BUILD - Release\" /REBUILD"; + makecommand += ".dsw /MAKE \"ALL_BUILD - Release\" "; } else { |