Browse Source

ENH: hack put the hack back for qnx to try and fix spaces in the path

pull/1/head
Bill Hoffman 19 years ago
parent
commit
48202ef623
  1. 4
      Source/cmLocalGenerator.cxx

4
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
{

Loading…
Cancel
Save