Browse Source

Try to fix quoted definitions

Andy Cedilnik 23 years ago
parent
commit
242347c52e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmLocalVisualStudio7Generator.cxx

+ 1 - 1
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)
       {