[BACK]Return to engine.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/engine.c between version 1.10 and 1.11

version 1.10, 2007/11/02 17:27:24 version 1.11, 2007/11/03 11:42:41
Line 76 
Line 76 
 bool  bool
 Job_CheckCommands(GNode *gn, void (*abortProc)(char *, ...))  Job_CheckCommands(GNode *gn, void (*abortProc)(char *, ...))
 {  {
           /* Alter our type to tell if errors should be ignored or things
            * should not be printed so CompatRunCommand knows what to do.
            */
           if (Targ_Ignore(gn))
                   gn->type |= OP_IGNORE;
           if (Targ_Silent(gn))
                   gn->type |= OP_SILENT;
   
         if (OP_NOP(gn->type) && Lst_IsEmpty(&gn->commands) &&          if (OP_NOP(gn->type) && Lst_IsEmpty(&gn->commands) &&
             (gn->type & (OP_NODEFAULT | OP_LIB)) == 0) {              (gn->type & (OP_NODEFAULT | OP_LIB)) == 0) {
                 /*                  /*

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11