diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-11-10 12:51:41 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-11-10 12:51:41 +0000 |
commit | 3e34efc03a6ecf96d66e3a2a3ddbca98634e59ba (patch) | |
tree | f45dc6156c1d74a79013f39bac5ce336e2b79d09 /usr.bin/make/job.c | |
parent | 07f3d5d8f6d929c17a675b8013993aec0a099a5f (diff) |
rename make -> must_make, made -> built_status
to make them easier to find in source files.
Diffstat (limited to 'usr.bin/make/job.c')
-rw-r--r-- | usr.bin/make/job.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index 0a6df9f7d54..6d22e3bbb13 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: job.c,v 1.107 2007/11/06 21:09:42 espie Exp $ */ +/* $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,7 +627,7 @@ JobFinish(Job *job, int status) /* 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; + job->node->built_status = MADE; Make_Update(job->node); free(job); } else if (status != 0) { @@ -953,7 +953,7 @@ prepare_job(GNode *gn, int flags) */ if (cmdsOK) { if (aborting == 0) { - job->node->made = MADE; + job->node->built_status = MADE; Make_Update(job->node); } } |