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

Diff for /src/usr.bin/make/compat.c between version 1.18 and 1.19

version 1.18, 1999/12/18 21:53:32 version 1.19, 1999/12/18 21:56:07
Line 711 
Line 711 
      *                      could not be made due to errors.       *                      could not be made due to errors.
      */       */
     errors = 0;      errors = 0;
     while (!Lst_IsEmpty (targs)) {      while ((gn = (GNode *)Lst_DeQueue(targs)) != NULL) {
         gn = (GNode *) Lst_DeQueue (targs);  
         CompatMake (gn, gn);          CompatMake (gn, gn);
   
         if (gn->made == UPTODATE) {          if (gn->made == UPTODATE) {

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19