diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-28 22:26:20 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-28 22:26:20 (GMT) |
commit | 1503caa14e03aca6acb1338c9266752d75a806ae (patch) | |
tree | 8398f6e8743f0c134c85a9bc817115b9612e80db /Source/cmLocalGenerator.cxx | |
parent | e5e2e6a3b3c6d8a2b2be1b3a4f7333b2599c1f6f (diff) | |
download | CMake-1503caa14e03aca6acb1338c9266752d75a806ae.zip CMake-1503caa14e03aca6acb1338c9266752d75a806ae.tar.gz CMake-1503caa14e03aca6acb1338c9266752d75a806ae.tar.bz2 |
ENH: remove qnx special stuff that does not work
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 57376ff..1a68871 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -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 { |