[Cmake] Bug in cmMSDotNETGenerator.cxx

Zeger Knops zeger at cs.uu.nl
Wed Aug 28 11:10:35 EDT 2002


In cmMSDotNetGenerator::CombineCommands (nighty of 08-28)
 
Line 1274
 
    {
    temp= 
      cmSystemTools::ConvertToOutputPath(c->second.m_Command.c_str()); 
    totalCommandStr += temp;
    totalCommandStr += " ";
    totalCommandStr += c->second.m_Arguments;
    totalCommand.Merge(c->second);
    }
 
should be
 
    {
    temp= 
      cmSystemTools::ConvertToOutputPath(c->second.m_Command.c_str()); 
    totalCommandStr += temp;
    totalCommandStr += " ";
    totalCommandStr += c->second.m_Arguments;
    totalCommandStr += "\n";  //This is new 
    totalCommand.Merge(c->second);
    }
 
 
Without the extra \n it is not possible to use more than one command.
VTK will not compile for java without this addition
 
Zeger Knops
 
 
 
 
 
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://public.kitware.com/pipermail/cmake/attachments/20020828/75f488f8/attachment.html>


More information about the CMake mailing list