BUG: fix for bug 3444, remove trailing . in lib names

This commit is contained in:
Bill Hoffman 2006-06-26 12:06:44 -04:00
parent f16b03ec07
commit e050211a6d
1 changed files with 1 additions and 1 deletions

View File

@ -689,7 +689,7 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
fout << "\t\t\t\tAdditionalOptions=\"" << libflags << "\"\n";
}
fout << "\t\t\t\tOutputFile=\""
<< this->ConvertToXMLOutputPathSingle(libpath.c_str()) << ".\"/>\n";
<< this->ConvertToXMLOutputPathSingle(libpath.c_str()) << "\"/>\n";
break;
}
case cmTarget::SHARED_LIBRARY: