[cmake-commits] hoffman committed cmLocalGenerator.cxx 1.179 1.180

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Feb 22 17:34:16 EST 2007


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

Modified Files:
	cmLocalGenerator.cxx 
Log Message:
ENH: hack put the hack back for qnx to try and fix spaces in the path


Index: cmLocalGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalGenerator.cxx,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -d -r1.179 -r1.180
--- cmLocalGenerator.cxx	22 Feb 2007 22:26:36 -0000	1.179
+++ cmLocalGenerator.cxx	22 Feb 2007 22:34:14 -0000	1.180
@@ -1582,7 +1582,11 @@
       {
       if(runtimeConcatenate)
         {
+#ifdef __QNX__
+        fout << runtimeSep << this->Convert(itr->c_str(), NONE, SHELL, false);
+#else
         fout << runtimeSep << *itr;
+#endif
         }
       else
         {



More information about the Cmake-commits mailing list