diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-09-03 20:22:55 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-09-03 20:22:55 (GMT) |
commit | d8837b92ba2297d802e29a4fcd32596949733425 (patch) | |
tree | 31025d458c58d98705130367f487eb5d816ef708 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 4b583125028f1de99a5316d3de36bc43e43137e7 (diff) | |
download | CMake-d8837b92ba2297d802e29a4fcd32596949733425.zip CMake-d8837b92ba2297d802e29a4fcd32596949733425.tar.gz CMake-d8837b92ba2297d802e29a4fcd32596949733425.tar.bz2 |
BUG: fix for 7519 extra closing > in fortran projects
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 088116b..149aa69 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1788,7 +1788,7 @@ cmLocalVisualStudio7Generator } if(projectType) { - fout << "\tProjectType=\"" << projectType << "\">\n"; + fout << "\tProjectType=\"" << projectType << "\"\n"; } fout<< "\tKeyword=\"" << keyword << "\">\n" << "\tProjectGUID=\"{" << gg->GetGUID(libName) << "}\">\n" |