=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/job.c,v retrieving revision 1.107 retrieving revision 1.108 diff -c -r1.107 -r1.108 *** src/usr.bin/make/job.c 2007/11/06 21:09:42 1.107 --- src/usr.bin/make/job.c 2007/11/10 12:51:40 1.108 *************** *** 1,5 **** /* $OpenPackages$ */ ! /* $OpenBSD: job.c,v 1.107 2007/11/06 21:09:42 espie Exp $ */ /* $NetBSD: job.c,v 1.16 1996/11/06 17:59:08 christos Exp $ */ /* --- 1,5 ---- /* $OpenPackages$ */ ! /* $OpenBSD: job.c,v 1.108 2007/11/10 12:51:40 espie Exp $ */ /* $NetBSD: job.c,v 1.16 1996/11/06 17:59:08 christos Exp $ */ /* *************** *** 627,633 **** /* As long as we aren't aborting and the job didn't return a * non-zero status that we shouldn't ignore, we call * Make_Update to update the parents. */ ! job->node->made = MADE; Make_Update(job->node); free(job); } else if (status != 0) { --- 627,633 ---- /* As long as we aren't aborting and the job didn't return a * non-zero status that we shouldn't ignore, we call * Make_Update to update the parents. */ ! job->node->built_status = MADE; Make_Update(job->node); free(job); } else if (status != 0) { *************** *** 953,959 **** */ if (cmdsOK) { if (aborting == 0) { ! job->node->made = MADE; Make_Update(job->node); } } --- 953,959 ---- */ if (cmdsOK) { if (aborting == 0) { ! job->node->built_status = MADE; Make_Update(job->node); } }