diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-22 22:34:14 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-22 22:34:14 (GMT) |
commit | 48202ef62395e6e29fed1ab74a939536695d9f64 (patch) | |
tree | 73d4e5cf4eacc7ad31757f382c12a674401d49e2 /Source | |
parent | 0b350cbb97233f30ba499a8581c0f94732f0f6e4 (diff) | |
download | CMake-48202ef62395e6e29fed1ab74a939536695d9f64.zip CMake-48202ef62395e6e29fed1ab74a939536695d9f64.tar.gz CMake-48202ef62395e6e29fed1ab74a939536695d9f64.tar.bz2 |
ENH: hack put the hack back for qnx to try and fix spaces in the path
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
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 { |