From c1eae5b8919a15d9dc5af3f47811f56574375b53 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 22 Feb 2007 16:23:12 -0500 Subject: BUG: Hack to try working around a problem with spaces in an rpath on QNX. --- Source/cmLocalGenerator.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index bcbbcee..ec1554e 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 { -- cgit v0.12