diff options
author | Brad King <brad.king@kitware.com> | 2005-05-05 14:26:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-05-05 14:26:41 (GMT) |
commit | 1c6f9716c390f6039c563afb9280c8499710154d (patch) | |
tree | d7c1c1a6693d421e6d04d61183be5096c6e09678 /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | da34e811a913c05af85fb6bef781bb73cd58fcdb (diff) | |
download | CMake-1c6f9716c390f6039c563afb9280c8499710154d.zip CMake-1c6f9716c390f6039c563afb9280c8499710154d.tar.gz CMake-1c6f9716c390f6039c563afb9280c8499710154d.tar.bz2 |
BUG: Added space after /clean to avoid putting it together with the build configuration. This fixes the failure of the complext test on the second run in the same tree.
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index 3362188..e29b076 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -75,7 +75,7 @@ std::string cmGlobalVisualStudio7Generator::GenerateBuildCommand(const char* mak } if(clean) { - makeCommand += "/clean"; + makeCommand += "/clean "; } else { |