summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-02-22 21:23:12 (GMT)
committerBrad King <brad.king@kitware.com>2007-02-22 21:23:12 (GMT)
commitc1eae5b8919a15d9dc5af3f47811f56574375b53 (patch)
treed67015b5fb1e96dd7deff1624ace7498f74ecd09 /Source
parentd51fef92b4e1681cfcb6140af5b0db3b5d244436 (diff)
downloadCMake-c1eae5b8919a15d9dc5af3f47811f56574375b53.zip
CMake-c1eae5b8919a15d9dc5af3f47811f56574375b53.tar.gz
CMake-c1eae5b8919a15d9dc5af3f47811f56574375b53.tar.bz2
BUG: Hack to try working around a problem with spaces in an rpath on QNX.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalGenerator.cxx4
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
{