diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-23 13:58:34 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-23 13:58:34 (GMT) |
commit | 242347c52e353e1bf0c469735dc53b0d4938eb46 (patch) | |
tree | f8042fc51dec2d880dc641a60d4eb9a894025716 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 4852c21b6f3cdd853949aefd5c6ab82510abeb4d (diff) | |
download | CMake-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.cxx | 2 |
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, "\"", """); + cmSystemTools::ReplaceString(define, "\"", ""); fout << define << ","; if(!done) { |