summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-11-28 09:41:04 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-11-28 09:41:04 +0000
commit540196d1d09ee5446b7ad66f7d3df83842ac3998 (patch)
tree557a53a56196688a584313a2dfb9dec9e7ea9885 /usr.bin/make
parentda31d81dc77c51e6d5853895e81c6b11bf08d2d6 (diff)
grrr
Diffstat (limited to 'usr.bin/make')
-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);