[Cmake-commits] [cmake-commits] alex committed cmExtraCodeBlocksGenerator.cxx 1.19 1.20

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Jan 9 18:04:22 EST 2009


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

Modified Files:
	cmExtraCodeBlocksGenerator.cxx 
Log Message:
BUG: fix #8203: codeblocks + mingw doesn't like the extra quotes around the
path to the makefile if it contains spaces, under Linux it works with spaces

Alex


Index: cmExtraCodeBlocksGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmExtraCodeBlocksGenerator.cxx,v
retrieving revision 1.19
retrieving revision 1.20
diff -C 2 -d -r1.19 -r1.20
*** cmExtraCodeBlocksGenerator.cxx	16 Aug 2008 20:48:42 -0000	1.19
--- cmExtraCodeBlocksGenerator.cxx	9 Jan 2009 23:04:20 -0000	1.20
***************
*** 419,422 ****
--- 419,429 ----
      command += target;
      }
+   else if (strcmp(this->GlobalGenerator->GetName(), "MinGW Makefiles")==0)
+     {
+     command += " -f ";
+     command += makefile;
+     command += " ";
+     command += target;
+     }
    else
      {



More information about the Cmake-commits mailing list