diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-23 15:05:25 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-23 15:05:25 (GMT) |
commit | 9cf39703dca89a2d9c21c62df9513233aaf41573 (patch) | |
tree | d3bdbf1d85142878f038f180e6c8579b91ef8135 | |
parent | af7c36f3cf0af8bddb1b9b8747c6bc0f4e8c3a79 (diff) | |
download | CMake-9cf39703dca89a2d9c21c62df9513233aaf41573.zip CMake-9cf39703dca89a2d9c21c62df9513233aaf41573.tar.gz CMake-9cf39703dca89a2d9c21c62df9513233aaf41573.tar.bz2 |
Remove debug stuff
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index 9e0a676..7969cdf 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -85,7 +85,7 @@ int cmGlobalVisualStudio6Generator::TryCompile(const char *, makeCommand += "ALL_BUILD"; } makeCommand += " - Debug\""; - + int retVal; if (!cmSystemTools::RunCommand(makeCommand.c_str(), *output, retVal)) { @@ -95,10 +95,6 @@ int cmGlobalVisualStudio6Generator::TryCompile(const char *, return 1; } cmSystemTools::ChangeDirectory(cwd.c_str()); - if (retVal) - { - cmSystemTools::Error("Generator: msdev returned a failure."); - } return retVal; } |