浏览代码

BUG: Hack to try working around a problem with spaces in an rpath on QNX.

Brad King 18 年之前
父节点
当前提交
c1eae5b891
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      Source/cmLocalGenerator.cxx

+ 4 - 0
Source/cmLocalGenerator.cxx

@@ -1582,7 +1582,11 @@ void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
       {
       if(runtimeConcatenate)
         {
+#ifdef __QNX__
+        fout << runtimeSep << this->Convert(itr->c_str(), NONE, SHELL, false);
+#else
         fout << runtimeSep << *itr;
+#endif
         }
       else
         {