diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2013-05-30 08:58:39 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2013-05-30 08:58:39 +0000 |
commit | 5dfabbf94fdc3d999cd9908b1fafb8e06071e8e1 (patch) | |
tree | a5424e31c716d4047ec928eaf9b08969ea81d894 /usr.bin/make/targ.c | |
parent | 11b189bb6ad3316b1b0f3106fa9353489bcf6495 (diff) |
remove cmtime again, but with a proper test for nodes without children.
problem seen by aja,
make pointed by matthieu,
sleuthing by me,
okay by millert
(and you say OpenBSD developers don't work together)
Diffstat (limited to 'usr.bin/make/targ.c')
-rw-r--r-- | usr.bin/make/targ.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index 8d87d940477..ec04e3b3378 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -1,4 +1,4 @@ -/* $OpenBSD: targ.c,v 1.73 2013/05/25 11:54:14 espie Exp $ */ +/* $OpenBSD: targ.c,v 1.74 2013/05/30 08:58:38 espie Exp $ */ /* $NetBSD: targ.c,v 1.11 1997/02/20 16:51:50 christos Exp $ */ /* @@ -158,7 +158,6 @@ Targ_NewGNi(const char *name, const char *ename) gn->childMade = false; gn->order = 0; ts_set_out_of_date(gn->mtime); - ts_set_out_of_date(gn->cmtime); gn->youngest = gn; Lst_Init(&gn->cohorts); Lst_Init(&gn->parents); |