summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/make/make.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/make.c b/usr.bin/make/make.c
index 14ad085d5a8..450ba011b11 100644
--- a/usr.bin/make/make.c
+++ b/usr.bin/make/make.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: make.c,v 1.54 2007/11/28 09:40:08 espie Exp $ */
+/* $OpenBSD: make.c,v 1.55 2007/11/28 09:41:03 espie Exp $ */
/* $NetBSD: make.c,v 1.10 1996/11/06 17:59:15 christos Exp $ */
/*
@@ -221,8 +221,8 @@ Make_Update(GNode *cgn) /* the child node */
for (ln = Lst_First(&cgn->parents); ln != NULL; ln = Lst_Adv(ln)) {
pgn = (GNode *)Lst_Datum(ln);
+ pgn->unmade--;
if (pgn->must_make) {
- pgn->unmade--;
if (DEBUG(MAKE))
printf("%s--=%d ",
pgn->name, pgn->unmade);