summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-23 13:58:34 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-23 13:58:34 (GMT)
commit242347c52e353e1bf0c469735dc53b0d4938eb46 (patch)
treef8042fc51dec2d880dc641a60d4eb9a894025716 /Source/cmLocalVisualStudio7Generator.cxx
parent4852c21b6f3cdd853949aefd5c6ab82510abeb4d (diff)
downloadCMake-242347c52e353e1bf0c469735dc53b0d4938eb46.zip
CMake-242347c52e353e1bf0c469735dc53b0d4938eb46.tar.gz
CMake-242347c52e353e1bf0c469735dc53b0d4938eb46.tar.bz2
Try to fix quoted definitions
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 c847fa3..11ddc8c 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -555,7 +555,7 @@ void cmLocalVisualStudio7Generator::OutputDefineFlags(std::ostream& fout)
define = defs.substr(pos+2);
done = true;
}
- cmSystemTools::ReplaceString(define, "\"", "&quot;");
+ cmSystemTools::ReplaceString(define, "\"", "");
fout << define << ",";
if(!done)
{