Remove debug stuff

This commit is contained in:
Andy Cedilnik 2002-09-23 11:05:25 -04:00
parent af7c36f3cf
commit 9cf39703dc

View File

@ -85,7 +85,7 @@ int cmGlobalVisualStudio6Generator::TryCompile(const char *,
makeCommand += "ALL_BUILD"; makeCommand += "ALL_BUILD";
} }
makeCommand += " - Debug\""; makeCommand += " - Debug\"";
int retVal; int retVal;
if (!cmSystemTools::RunCommand(makeCommand.c_str(), *output, retVal)) if (!cmSystemTools::RunCommand(makeCommand.c_str(), *output, retVal))
{ {
@ -95,10 +95,6 @@ int cmGlobalVisualStudio6Generator::TryCompile(const char *,
return 1; return 1;
} }
cmSystemTools::ChangeDirectory(cwd.c_str()); cmSystemTools::ChangeDirectory(cwd.c_str());
if (retVal)
{
cmSystemTools::Error("Generator: msdev returned a failure.");
}
return retVal; return retVal;
} }