[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.36 and 1.37

version 1.36, 2012/10/06 09:32:40 version 1.37, 2012/10/09 19:50:44
Line 128 
Line 128 
         if (Targ_Silent(gn))          if (Targ_Silent(gn))
                 gn->type |= OP_SILENT;                  gn->type |= OP_SILENT;
   
           if (DEBUG(DOUBLE) && (gn->type & OP_DOUBLE))
                   fprintf(stderr, "Warning: target %s had >1 lists of "
                       "shell commands (ignoring later ones)\n", gn->name);
         if (OP_NOP(gn->type) && Lst_IsEmpty(&gn->commands)) {          if (OP_NOP(gn->type) && Lst_IsEmpty(&gn->commands)) {
                 if (drop_silently(gn->name)) {                  if (drop_silently(gn->name)) {
                         printf("Warning: target %s", gn->name);                          printf("Warning: target %s", gn->name);
Line 312 
Line 315 
                 }                  }
         }          }
   
         pgn->type |= cgn->type & ~(OP_OPMASK|OP_USE|OP_TRANSFORM);          if (DEBUG(DOUBLE) && (cgn->type & OP_DOUBLE))
                   fprintf(stderr,
                       "Warning: .USE %s expanded in %s had >1 lists of "
                       "shell commands (ignoring later ones)\n",
                       cgn->name, pgn->name);
           pgn->type |= cgn->type & ~(OP_OPMASK|OP_USE|OP_TRANSFORM|OP_DOUBLE);
   
         /*          /*
          * This child node is now "made", so we decrement the count of           * This child node is now "made", so we decrement the count of

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37