summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-02-23 22:38:59 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-02-23 22:38:59 (GMT)
commitd7e57294fbaf2181ffeadcd9ff1a1ecb8d624907 (patch)
treebc51d1830aecbc6b81b51f22879172b9e0158886 /Source/cmLocalGenerator.cxx
parent77ad2d62c215c4306eed9509327a86a4b37c43d3 (diff)
downloadCMake-d7e57294fbaf2181ffeadcd9ff1a1ecb8d624907.zip
CMake-d7e57294fbaf2181ffeadcd9ff1a1ecb8d624907.tar.gz
CMake-d7e57294fbaf2181ffeadcd9ff1a1ecb8d624907.tar.bz2
ENH: try another thing
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index b233fbf..fe4bc65 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -1582,9 +1582,12 @@ void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
if(runtimeConcatenate)
{
#ifdef __QNX__
- std::cerr << itr->c_str() << "\n";
- std::cerr << this->Convert(itr->c_str(), NONE, SHELL, false) << "\n";
- fout << runtimeSep << this->Convert(itr->c_str(), NONE, SHELL, false);
+ 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