BUG: fix for bug 323
This commit is contained in:
parent
2480a83deb
commit
c02edd816a
|
@ -2359,6 +2359,14 @@ int cmCTest::RunMakeCommand(const char* command, std::string* output,
|
|||
{
|
||||
if ( output )
|
||||
{
|
||||
for(int cc =0; cc < length; ++cc)
|
||||
{
|
||||
if(data[cc] == 0)
|
||||
{
|
||||
data[cc] = '\n';
|
||||
}
|
||||
}
|
||||
|
||||
output->append(data, length);
|
||||
if ( !verbose )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue