[cmake-commits] alex committed cmExportCommand.cxx 1.5 1.6

cmake-commits at cmake.org cmake-commits at cmake.org
Sun Oct 14 08:15:25 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv31465

Modified Files:
	cmExportCommand.cxx 
Log Message:

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

Alex


Index: cmExportCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmExportCommand.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- cmExportCommand.cxx	9 Aug 2007 19:57:30 -0000	1.5
+++ cmExportCommand.cxx	14 Oct 2007 12:15:22 -0000	1.6
@@ -191,7 +191,7 @@
           if (loc && *loc)
             {
             fout << "                      " << currentConfig->c_str()
-                                            << "_LOCATION \'" << loc << "\"\n";
+                                            << "_LOCATION \"" << loc << "\"\n";
             }
           }
         }



More information about the Cmake-commits mailing list