diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-10-14 12:15:22 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-10-14 12:15:22 (GMT) |
commit | ae064678669a922f12d04d2a6950027a943415ca (patch) | |
tree | aed074aa265b627d6bd09faf851951e322dc6b30 | |
parent | eec2b7a2cb3e9043d2ccbdba6860c95a68bfd37a (diff) | |
download | CMake-ae064678669a922f12d04d2a6950027a943415ca.zip CMake-ae064678669a922f12d04d2a6950027a943415ca.tar.gz CMake-ae064678669a922f12d04d2a6950027a943415ca.tar.bz2 |
BUG: fix #5806, wrong quotes used in the exported file
Alex
-rw-r--r-- | Source/cmExportCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportCommand.cxx b/Source/cmExportCommand.cxx index a00dcf0..523528d 100644 --- a/Source/cmExportCommand.cxx +++ b/Source/cmExportCommand.cxx @@ -191,7 +191,7 @@ bool cmExportCommand if (loc && *loc) { fout << " " << currentConfig->c_str() - << "_LOCATION \'" << loc << "\"\n"; + << "_LOCATION \"" << loc << "\"\n"; } } } |