[cmake-commits] martink committed cmLocalUnixMakefileGenerator3.cxx 1.186 1.187

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Feb 19 12:26:34 EST 2007


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

Modified Files:
	cmLocalUnixMakefileGenerator3.cxx 
Log Message:
BUG: fix for spaces in path for nmake


Index: cmLocalUnixMakefileGenerator3.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalUnixMakefileGenerator3.cxx,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -d -r1.186 -r1.187
--- cmLocalUnixMakefileGenerator3.cxx	16 Feb 2007 21:12:16 -0000	1.186
+++ cmLocalUnixMakefileGenerator3.cxx	19 Feb 2007 17:26:32 -0000	1.187
@@ -827,7 +827,7 @@
 {
   std::string dir = this->HomeRelativeOutputPath;
   dir += this->GetTargetDirectory(target);
-  return this->Convert(dir.c_str(),NONE,MAKEFILE);
+  return this->Convert(dir.c_str(),NONE,UNCHANGED);
 }
 
 



More information about the Cmake-commits mailing list