From ae064678669a922f12d04d2a6950027a943415ca Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Sun, 14 Oct 2007 08:15:22 -0400 Subject: BUG: fix #5806, wrong quotes used in the exported file Alex --- Source/cmExportCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } } } -- cgit v0.12