From 1c6f9716c390f6039c563afb9280c8499710154d Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 5 May 2005 10:26:41 -0400 Subject: 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. --- Source/cmGlobalVisualStudio7Generator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- cgit v0.12