summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-06-26 16:06:44 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-06-26 16:06:44 (GMT)
commite050211a6d20631f0be63ac5be1a083ac3844d40 (patch)
treec55196dfdf160f404eb6e78139b514245e5e984e /Source/cmLocalVisualStudio7Generator.cxx
parentf16b03ec070b42684f44a2afe590e78937328869 (diff)
downloadCMake-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.cxx2
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: