Changeset 516 for CMT/HEAD


Ignore:
Timestamp:
Aug 10, 2009, 5:31:32 PM (15 years ago)
Author:
rybkin
Message:

See C.L. 405

Location:
CMT/HEAD
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r515 r516  
     12009-08-10    <rybkin@lal.in2p3.fr> 405
     2
     3        * source/cmt_parser.cxx: In functions Cmt::do_remove_library_links,
     4        Cmt::do_broadcast, set CmtError::execution_error when CmtSystem::execute
     5        returns a non-zero (including 2) value
     6       
    172009-07-15    <rybkin@lal.in2p3.fr> 404
    28
  • CMT/HEAD/source/cmt_parser.cxx

    r504 r516  
    19551955            //if ((status != 0) && !ignore_errors)
    19561956            {
    1957               if (status != 2) CmtError::set (CmtError::execution_error, cmd);
     1957              //              if (status != 2) CmtError::set (CmtError::execution_error, cmd);
     1958              CmtError::set (CmtError::execution_error, cmd);
    19581959              break;
    19591960            }
     
    34893490              if (status != 0)
    34903491                {
    3491                   if (status != 2) CmtError::set (CmtError::execution_error, s);
     3492                  //                  if (status != 2) CmtError::set (CmtError::execution_error, s);
     3493                  CmtError::set (CmtError::execution_error, s);
    34923494
    34933495                  CmtMessage::warning ("Cannot remove the symbolic link " + s);
Note: See TracChangeset for help on using the changeset viewer.