=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/engine.c,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- src/usr.bin/make/engine.c 2020/01/13 14:14:24 1.61 +++ src/usr.bin/make/engine.c 2020/01/13 14:15:21 1.62 @@ -1,4 +1,4 @@ -/* $OpenBSD: engine.c,v 1.61 2020/01/13 14:14:24 espie Exp $ */ +/* $OpenBSD: engine.c,v 1.62 2020/01/13 14:15:21 espie Exp $ */ /* * Copyright (c) 2012 Marc Espie. * @@ -676,6 +676,10 @@ } printf(", line %lu of %s", job->location->lineno, 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) determine_expensive_job(job); if ((job->flags & (JOB_SILENT | JOB_IS_EXPENSIVE))