BUG: Hack to try working around a problem with spaces in an rpath on QNX.
This commit is contained in:
parent
d51fef92b4
commit
c1eae5b891
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue