[cmake-commits] king committed cmLocalGenerator.cxx 1.177 1.178

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Feb 22 16:23:15 EST 2007


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

Modified Files:
	cmLocalGenerator.cxx 
Log Message:
BUG: Hack to try working around a problem with spaces in an rpath on QNX.


Index: cmLocalGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalGenerator.cxx,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -d -r1.177 -r1.178
--- cmLocalGenerator.cxx	22 Feb 2007 20:33:49 -0000	1.177
+++ cmLocalGenerator.cxx	22 Feb 2007 21:23:12 -0000	1.178
@@ -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