=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/engine.c,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- src/usr.bin/make/engine.c 2019/05/21 17:10:49 1.56 +++ src/usr.bin/make/engine.c 2019/12/21 15:28:16 1.57 @@ -1,4 +1,4 @@ -/* $OpenBSD: engine.c,v 1.56 2019/05/21 17:10:49 espie Exp $ */ +/* $OpenBSD: engine.c,v 1.57 2019/12/21 15:28:16 espie Exp $ */ /* * Copyright (c) 2012 Marc Espie. * @@ -373,11 +373,11 @@ */ do_oodate = false; if (gn->type & OP_JOIN) { - if (child->built_status == MADE) + if (child->built_status == REBUILT) do_oodate = true; } else if (is_strictly_before(gn->mtime, child->mtime) || (!is_strictly_before(child->mtime, starttime) && - child->built_status == MADE)) + child->built_status == REBUILT)) do_oodate = true; if (do_oodate) { oodate_count++; @@ -703,7 +703,7 @@ if (!gn || (gn->type & OP_DUMMY)) return NOSUCHNODE; - gn->built_status = MADE; + gn->built_status = REBUILT; job_attach_node(&myjob, gn); while (myjob.exit_type == JOB_EXIT_OKAY) {