[cmake-commits] hoffman committed cmLocalGenerator.cxx 1.183 1.184

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Feb 23 17:39:01 EST 2007


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

Modified Files:
	cmLocalGenerator.cxx 
Log Message:
ENH: try another thing


Index: cmLocalGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalGenerator.cxx,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -d -r1.183 -r1.184
--- cmLocalGenerator.cxx	23 Feb 2007 22:07:57 -0000	1.183
+++ cmLocalGenerator.cxx	23 Feb 2007 22:38:59 -0000	1.184
@@ -1582,9 +1582,12 @@
       if(runtimeConcatenate)
         {
 #ifdef __QNX__
-        std::cerr << itr->c_str() << "\n";
-        std::cerr << this->Convert(itr->c_str(), NONE, SHELL, false) << "\n";
-        fout << runtimeSep << this->Convert(itr->c_str(), NONE, SHELL, false);
+        std::string s = "\"";
+        s += *itr;
+        s += "\"";
+        std::cout << itr->c_str() << "\n";
+        std::cout << this->Convert(s.c_str(), NONE, SHELL, false) << "\n";
+        fout << runtimeSep << this->Convert(s.c_str(), NONE, SHELL, false) << ;
 #else
         fout << runtimeSep << *itr;
 #endif



More information about the Cmake-commits mailing list