[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.16 and 1.17

version 1.16, 2007/11/17 16:39:45 version 1.17, 2007/12/31 15:49:23
Line 238 
Line 238 
                 if (cgn->type & OP_USE)                  if (cgn->type & OP_USE)
                         pgn->unmade--;                          pgn->unmade--;
         }          }
           /* if the parent node doesn't have any location, then inherit the
            * use stuff, since that gives us better error messages.
            */
           if (!pgn->lineno) {
                   pgn->lineno = cgn->lineno;
                   pgn->fname = cgn->fname;
           }
 }  }
   
 void  void

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17