ENH: remove qnx special stuff that does not work
This commit is contained in:
parent
e5e2e6a3b3
commit
1503caa14e
|
@ -1581,16 +1581,7 @@ void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
|
||||||
{
|
{
|
||||||
if(runtimeConcatenate)
|
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;
|
fout << runtimeSep << *itr;
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue