summaryrefslogtreecommitdiffstats
path: root/Source/cmExportCommand.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-10-14 12:15:22 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-10-14 12:15:22 (GMT)
commitae064678669a922f12d04d2a6950027a943415ca (patch)
treeaed074aa265b627d6bd09faf851951e322dc6b30 /Source/cmExportCommand.cxx
parenteec2b7a2cb3e9043d2ccbdba6860c95a68bfd37a (diff)
downloadCMake-ae064678669a922f12d04d2a6950027a943415ca.zip
CMake-ae064678669a922f12d04d2a6950027a943415ca.tar.gz
CMake-ae064678669a922f12d04d2a6950027a943415ca.tar.bz2
BUG: fix #5806, wrong quotes used in the exported file
Alex
Diffstat (limited to 'Source/cmExportCommand.cxx')
-rw-r--r--Source/cmExportCommand.cxx2
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";
}
}
}