From 48202ef62395e6e29fed1ab74a939536695d9f64 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 22 Feb 2007 17:34:14 -0500 Subject: [PATCH] ENH: hack put the hack back for qnx to try and fix spaces in the path --- Source/cmLocalGenerator.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index bcbbceec7..ec1554ebf 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 {