summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-02-22 17:34:14 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2007-02-22 17:34:14 -0500
commit48202ef62395e6e29fed1ab74a939536695d9f64 (patch)
tree73d4e5cf4eacc7ad31757f382c12a674401d49e2
parent0b350cbb97233f30ba499a8581c0f94732f0f6e4 (diff)
downloadcmake-48202ef62395e6e29fed1ab74a939536695d9f64.tar.gz
ENH: hack put the hack back for qnx to try and fix spaces in the path
-rw-r--r--Source/cmLocalGenerator.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index bcbbceec7e..ec1554ebf3 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/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
{