Don't bother to apply suffix rules to find sources for a target marked

as .MADE.
This commit is contained in:
pk 2002-02-03 19:58:15 +00:00
parent 7f01f1dd6b
commit 58e7f3798e
2 changed files with 10 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: compat.c,v 1.37 2002/01/27 01:50:54 reinoud Exp $ */
/* $NetBSD: compat.c,v 1.38 2002/02/03 19:58:15 pk Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@ -39,14 +39,14 @@
*/
#ifdef MAKE_BOOTSTRAP
static char rcsid[] = "$NetBSD: compat.c,v 1.37 2002/01/27 01:50:54 reinoud Exp $";
static char rcsid[] = "$NetBSD: compat.c,v 1.38 2002/02/03 19:58:15 pk Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)compat.c 8.2 (Berkeley) 3/19/94";
#else
__RCSID("$NetBSD: compat.c,v 1.37 2002/01/27 01:50:54 reinoud Exp $");
__RCSID("$NetBSD: compat.c,v 1.38 2002/02/03 19:58:15 pk Exp $");
#endif
#endif /* not lint */
#endif
@ -390,7 +390,8 @@ CompatMake (gnp, pgnp)
*/
gn->flags |= REMAKE;
gn->made = BEINGMADE;
Suff_FindDeps (gn);
if ((gn->type & OP_MADE) == 0)
Suff_FindDeps (gn);
Lst_ForEach (gn->children, CompatMake, (ClientData)gn);
if ((gn->flags & REMAKE) == 0) {
gn->made = ABORTED;

View File

@ -1,4 +1,4 @@
/* $NetBSD: make.c,v 1.40 2002/01/27 01:50:55 reinoud Exp $ */
/* $NetBSD: make.c,v 1.41 2002/02/03 19:58:15 pk Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@ -39,14 +39,14 @@
*/
#ifdef MAKE_BOOTSTRAP
static char rcsid[] = "$NetBSD: make.c,v 1.40 2002/01/27 01:50:55 reinoud Exp $";
static char rcsid[] = "$NetBSD: make.c,v 1.41 2002/02/03 19:58:15 pk Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)make.c 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: make.c,v 1.40 2002/01/27 01:50:55 reinoud Exp $");
__RCSID("$NetBSD: make.c,v 1.41 2002/02/03 19:58:15 pk Exp $");
#endif
#endif /* not lint */
#endif
@ -1010,7 +1010,8 @@ Make_ExpandUse (targs)
Var_Set (TARGET, gn->path ? gn->path : gn->name, gn, 0);
Lst_ForEach (gn->children, MakeUnmark, (ClientData)gn);
Lst_ForEach (gn->children, MakeHandleUse, (ClientData)gn);
Suff_FindDeps (gn);
if ((gn->type & OP_MADE) == 0)
Suff_FindDeps (gn);
if (gn->unmade != 0 && (gn->type & OP_MADE) == 0) {
Lst_ForEach (gn->children, MakeAddChild, (ClientData)examine);