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

Diff for /src/usr.bin/make/engine.c between version 1.61 and 1.62

version 1.61, 2020/01/13 14:14:24 version 1.62, 2020/01/13 14:15:21
Line 676 
Line 676 
                         }                          }
                         printf(", line %lu of %s", job->location->lineno,                          printf(", line %lu of %s", job->location->lineno,
                             job->location->fname);                              job->location->fname);
                           /* Parallel make already determined whether
                            * JOB_IS_EXPENSIVE, perform the computation for
                            * sequential make to figure out whether to display the
                            * command or not.  */
                         if ((job->flags & JOB_SILENT) && job == &myjob)                          if ((job->flags & JOB_SILENT) && job == &myjob)
                                 determine_expensive_job(job);                                  determine_expensive_job(job);
                         if ((job->flags & (JOB_SILENT | JOB_IS_EXPENSIVE))                          if ((job->flags & (JOB_SILENT | JOB_IS_EXPENSIVE))

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62