diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-08-07 13:19:39 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-08-07 13:19:39 (GMT) |
commit | 4a1412b0cb0af4d0e6c58f4555f69f9693af0581 (patch) | |
tree | 79502c90a7fd998c9313d0a15d3537c0fa59c6e8 /Source | |
parent | d0b33916423488132e9c7b0eba67bae6503b30b3 (diff) | |
download | CMake-4a1412b0cb0af4d0e6c58f4555f69f9693af0581.zip CMake-4a1412b0cb0af4d0e6c58f4555f69f9693af0581.tar.gz CMake-4a1412b0cb0af4d0e6c58f4555f69f9693af0581.tar.bz2 |
BUG: fix for bugs 125 - 128, and a fix for the bug introduced by the bug fix for but 92. & was being replaced with &, but after double quote was replaced with " causing it to be &quot. Also add more search paths for mpi
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 42b7632..991d43c 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1021,8 +1021,8 @@ void cmLocalVisualStudio7Generator::WriteVCProjFooter(std::ostream& fout) std::string cmLocalVisualStudio7Generator::EscapeForXML(const char* s) { std::string ret = s; - cmSystemTools::ReplaceString(ret, "\"", """); cmSystemTools::ReplaceString(ret, "&", "&"); + cmSystemTools::ReplaceString(ret, "\"", """); cmSystemTools::ReplaceString(ret, "<", "<"); cmSystemTools::ReplaceString(ret, ">", ">"); return ret; @@ -1031,8 +1031,8 @@ std::string cmLocalVisualStudio7Generator::EscapeForXML(const char* s) std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPath(const char* path) { std::string ret = cmSystemTools::ConvertToOutputPath(path); - cmSystemTools::ReplaceString(ret, "\"", """); cmSystemTools::ReplaceString(ret, "&", "&"); + cmSystemTools::ReplaceString(ret, "\"", """); cmSystemTools::ReplaceString(ret, "<", "<"); cmSystemTools::ReplaceString(ret, ">", ">"); return ret; |