summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-05-05 14:26:41 (GMT)
committerBrad King <brad.king@kitware.com>2005-05-05 14:26:41 (GMT)
commit1c6f9716c390f6039c563afb9280c8499710154d (patch)
treed7c1c1a6693d421e6d04d61183be5096c6e09678 /Source/cmGlobalVisualStudio7Generator.cxx
parentda34e811a913c05af85fb6bef781bb73cd58fcdb (diff)
downloadCMake-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.cxx2
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
{