BUG: remove part of patch from bug 1965 that set executable paths

This commit is contained in:
Bill Hoffman 2005-07-13 16:57:29 -04:00
parent 3d5a724deb
commit 42b76aea32
1 changed files with 1 additions and 6 deletions

View File

@ -724,10 +724,7 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
this->OutputLibraries(fout, configName, libName, target);
fout << "\"\n";
temp = m_ExecutableOutputPath;
if (!m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH_OVERRIDE"))
temp += configName;
temp += configName;
temp += "/";
// do we have a different executable name?
@ -740,8 +737,6 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
temp += libName;
}
temp += debugPostfix;
temp += ".exe";
fout << "\t\t\t\tOutputFile=\"" << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
for(std::map<cmStdString, cmStdString>::iterator i = flagMap.begin();