Browse Source

BUG: fix #5806, wrong quotes used in the exported file

Alex
Alexander Neundorf 18 years ago
parent
commit
ae06467866
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmExportCommand.cxx

+ 1 - 1
Source/cmExportCommand.cxx

@@ -191,7 +191,7 @@ bool cmExportCommand
           if (loc && *loc)
             {
             fout << "                      " << currentConfig->c_str()
-                                            << "_LOCATION \'" << loc << "\"\n";
+                                            << "_LOCATION \"" << loc << "\"\n";
             }
           }
         }