diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-06-26 16:06:44 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-06-26 16:06:44 (GMT) |
commit | e050211a6d20631f0be63ac5be1a083ac3844d40 (patch) | |
tree | c55196dfdf160f404eb6e78139b514245e5e984e /Source/cmLocalVisualStudio7Generator.cxx | |
parent | f16b03ec070b42684f44a2afe590e78937328869 (diff) | |
download | CMake-e050211a6d20631f0be63ac5be1a083ac3844d40.zip CMake-e050211a6d20631f0be63ac5be1a083ac3844d40.tar.gz CMake-e050211a6d20631f0be63ac5be1a083ac3844d40.tar.bz2 |
BUG: fix for bug 3444, remove trailing . in lib names
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 99e6ca3..b3c0b8a 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -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: |