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

Diff for /src/usr.bin/make/targ.c between version 1.57 and 1.58

version 1.57, 2008/11/04 07:22:36 version 1.58, 2009/05/12 09:24:16
Line 298 
Line 298 
 bool  bool
 Targ_Precious(GNode *gn)  Targ_Precious(GNode *gn)
 {  {
         if (allPrecious || (gn->type & (OP_PRECIOUS|OP_DOUBLEDEP)))          if (allPrecious || (gn->type & (OP_PRECIOUS|OP_DOUBLEDEP|OP_PHONY)))
                 return true;                  return true;
         else          else
                 return false;                  return false;

Legend:
Removed from v.1.57  
changed lines
  Added in v.1.58