From d101dfff569ea3a4b2cec378b2cfb592731ce351 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Mon, 25 Jun 2012 16:34:57 +0000 Subject: [PATCH] Boost Jam code cleanup - minor stylistic make1.c module changes. [SVN r79088] --- src/engine/make1.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/engine/make1.c b/src/engine/make1.c index f850a889e..6ca3b3208 100644 --- a/src/engine/make1.c +++ b/src/engine/make1.c @@ -290,7 +290,8 @@ static void make1a( state * pState ) } /* If the target has been previously updated with -n in effect, and we are - * now ignoring -n, update it for real. + * now ignoring -n, update it for real. E.g. if the UPDATE_NOW rule was + * called for it twice - first with the -n option and then without. */ if ( !globs.noexec && t->progress == T_MAKE_NOEXEC_DONE ) t->progress = T_MAKE_INIT; @@ -1159,7 +1160,7 @@ static LIST * make1list( LIST * l, TARGETS * targets, int flags ) ( t->fate <= T_FATE_STABLE ) ) continue; } - else if ( flags & RULE_EXISTING ) + else if ( flags & RULE_EXISTING ) { if ( t->binding != T_BIND_EXISTS ) continue;