BUG: Hack to try working around a problem with spaces in an rpath on QNX.

This commit is contained in:
Brad King 2007-02-22 16:23:12 -05:00
parent d51fef92b4
commit c1eae5b891
1 changed files with 4 additions and 0 deletions

View File

@ -1582,7 +1582,11 @@ void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
{ {
if(runtimeConcatenate) if(runtimeConcatenate)
{ {
#ifdef __QNX__
fout << runtimeSep << this->Convert(itr->c_str(), NONE, SHELL, false);
#else
fout << runtimeSep << *itr; fout << runtimeSep << *itr;
#endif
} }
else else
{ {