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

Diff for /src/usr.bin/make/parse.c between version 1.133 and 1.134

version 1.133, 2020/04/20 08:17:33 version 1.134, 2021/03/06 08:31:42
Line 925 
Line 925 
                                 ln = Lst_Adv(ln))                                  ln = Lst_Adv(ln))
                                     Dir_AddDiri(Lst_Datum(ln), line, cp);                                      Dir_AddDiri(Lst_Datum(ln), line, cp);
                             break;                              break;
                             Lst_Destroy(&paths, NOFREE);  
                             }                              }
                     default:                      default:
                             break;                              break;
Line 988 
Line 987 
                         line = cp;                          line = cp;
                 }                  }
         }          }
   
           /* If we're not in the SPEC_PATH case the list is empty, but who
            * cares ?  This is cheap.
            */
           Lst_Destroy(&paths, NOFREE);
   
         if (mainNode == NULL) {          if (mainNode == NULL) {
                 /* If we have yet to decide on a main target to make, in the                  /* If we have yet to decide on a main target to make, in the

Legend:
Removed from v.1.133  
changed lines
  Added in v.1.134