ENH: remove qnx special stuff that does not work

This commit is contained in:
Bill Hoffman 2007-02-28 17:26:20 -05:00
parent e5e2e6a3b3
commit 1503caa14e
1 changed files with 0 additions and 9 deletions

View File

@ -1581,16 +1581,7 @@ void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
{
if(runtimeConcatenate)
{
#ifdef __QNX__
std::string s = "\"";
s += *itr;
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
fout << runtimeSep << *itr;
#endif
}
else
{