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

Diff for /src/usr.bin/make/suff.c between version 1.91 and 1.92

version 1.91, 2016/10/21 16:12:38 version 1.92, 2017/07/24 12:07:46
Line 1531 
Line 1531 
                          * path to be the name so Dir_MTime won't go grovelling                           * path to be the name so Dir_MTime won't go grovelling
                          * for it.  */                           * for it.  */
                         gn->suffix = targ == NULL ? NULL : targ->suff;                          gn->suffix = targ == NULL ? NULL : targ->suff;
                         efree(gn->path);                          free(gn->path);
                         gn->path = estrdup(gn->name);                          gn->path = estrdup(gn->name);
                 }                  }
   
Line 1602 
Line 1602 
         gn->suffix = src->suff;          gn->suffix = src->suff;
   
         /* So Dir_MTime doesn't go questing for it...  */          /* So Dir_MTime doesn't go questing for it...  */
         efree(gn->path);          free(gn->path);
         gn->path = estrdup(gn->name);          gn->path = estrdup(gn->name);
   
         /* Nuke the transformation path and the Src structures left over in the          /* Nuke the transformation path and the Src structures left over in the

Legend:
Removed from v.1.91  
changed lines
  Added in v.1.92