[BACK]Return to meta.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / make

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/make/meta.c between version 1.95 and 1.96

version 1.95, 2020/08/22 13:28:20 version 1.96, 2020/08/22 15:17:09
Line 1340  meta_oodate(GNode *gn, Boolean oodate)
Line 1340  meta_oodate(GNode *gn, Boolean oodate)
                             do {                              do {
                                 nln = Lst_FindFrom(missingFiles, Lst_Succ(ln),                                  nln = Lst_FindFrom(missingFiles, Lst_Succ(ln),
                                                    p, path_match);                                                     p, path_match);
                                 tp = Lst_Datum(ln);                                  tp = Lst_DatumS(ln);
                                 Lst_RemoveS(missingFiles, ln);                                  Lst_RemoveS(missingFiles, ln);
                                 free(tp);                                  free(tp);
                             } while ((ln = nln) != NULL);                              } while ((ln = nln) != NULL);
Line 1519  meta_oodate(GNode *gn, Boolean oodate)
Line 1519  meta_oodate(GNode *gn, Boolean oodate)
                         fprintf(debug_file, "%s: %d: there were more build commands in the meta data file than there are now...\n", fname, lineno);                          fprintf(debug_file, "%s: %d: there were more build commands in the meta data file than there are now...\n", fname, lineno);
                     oodate = TRUE;                      oodate = TRUE;
                 } else {                  } else {
                     char *cmd = (char *)Lst_Datum(ln);                      char *cmd = Lst_DatumS(ln);
                     Boolean hasOODATE = FALSE;                      Boolean hasOODATE = FALSE;
   
                     if (strstr(cmd, "$?"))                      if (strstr(cmd, "$?"))
Line 1596  meta_oodate(GNode *gn, Boolean oodate)
Line 1596  meta_oodate(GNode *gn, Boolean oodate)
         if (!Lst_IsEmpty(missingFiles)) {          if (!Lst_IsEmpty(missingFiles)) {
             if (DEBUG(META))              if (DEBUG(META))
                 fprintf(debug_file, "%s: missing files: %s...\n",                  fprintf(debug_file, "%s: missing files: %s...\n",
                         fname, (char *)Lst_Datum(Lst_First(missingFiles)));                          fname, (char *)Lst_DatumS(Lst_First(missingFiles)));
             oodate = TRUE;              oodate = TRUE;
         }          }
         if (!oodate && !have_filemon && filemonMissing) {          if (!oodate && !have_filemon && filemonMissing) {

Legend:
Removed from v.1.95  
changed lines
  Added in v.1.96

CVSweb <webmaster@jp.NetBSD.org>