ENH: try another thing

This commit is contained in:
Bill Hoffman 2007-02-23 17:38:59 -05:00
parent 77ad2d62c2
commit d7e57294fb

View File

@ -1582,9 +1582,12 @@ void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
if(runtimeConcatenate) if(runtimeConcatenate)
{ {
#ifdef __QNX__ #ifdef __QNX__
std::cerr << itr->c_str() << "\n"; std::string s = "\"";
std::cerr << this->Convert(itr->c_str(), NONE, SHELL, false) << "\n"; s += *itr;
fout << runtimeSep << this->Convert(itr->c_str(), NONE, SHELL, false); s += "\"";
std::cout << itr->c_str() << "\n";
std::cout << this->Convert(s.c_str(), NONE, SHELL, false) << "\n";
fout << runtimeSep << this->Convert(s.c_str(), NONE, SHELL, false) << ;
#else #else
fout << runtimeSep << *itr; fout << runtimeSep << *itr;
#endif #endif