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/arch.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/arch.c')
-rw-r--r-- | usr.bin/make/arch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c index ecd054b68b6..70661376d8f 100644 --- a/usr.bin/make/arch.c +++ b/usr.bin/make/arch.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: arch.c,v 1.73 2007/11/03 15:30:04 deraadt Exp $ */ +/* $OpenBSD: arch.c,v 1.74 2007/11/10 12:51:40 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* @@ -922,11 +922,11 @@ Arch_MemMTime(GNode *gn) } else nameEnd = NULL; - if (pgn->make && nameEnd != NULL && + if (pgn->must_make && nameEnd != NULL && strncmp(nameStart, gn->name, nameEnd - nameStart) == 0 && gn->name[nameEnd-nameStart] == '\0') gn->mtime = Arch_MTime(pgn); - } else if (pgn->make) { + } else if (pgn->must_make) { /* Something which isn't a library depends on the * existence of this target, so it needs to exist. */ ts_set_out_of_date(gn->mtime); |