[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.51 and 1.52

version 1.51, 2016/10/21 16:12:38 version 1.52, 2017/01/29 10:04:13
Line 300 
Line 300 
   
         assert(cgn->type & (OP_USE|OP_TRANSFORM));          assert(cgn->type & (OP_USE|OP_TRANSFORM));
   
           if (pgn == NULL)
                   Fatal("Trying to apply .USE to '%s' without a parent",
                       cgn->name);
   
         if ((cgn->type & OP_USE) || Lst_IsEmpty(&pgn->commands)) {          if ((cgn->type & OP_USE) || Lst_IsEmpty(&pgn->commands)) {
                 /* .USE or transformation and target has no commands                  /* .USE or transformation and target has no commands
                  * -- append the child's commands to the parent.  */                   * -- append the child's commands to the parent.  */

Legend:
Removed from v.1.51  
changed lines
  Added in v.1.52