Another small change to make archive member rules work. With this change
archive member rules seem to work as expected again.
This commit is contained in:
parent
9055794a13
commit
5c97c6933e
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: suff.c,v 1.80 2016/03/15 06:25:14 matthias Exp $ */
|
/* $NetBSD: suff.c,v 1.81 2016/03/15 18:30:14 matthias Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988, 1989, 1990, 1993
|
* Copyright (c) 1988, 1989, 1990, 1993
|
||||||
|
@ -69,14 +69,14 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef MAKE_NATIVE
|
#ifndef MAKE_NATIVE
|
||||||
static char rcsid[] = "$NetBSD: suff.c,v 1.80 2016/03/15 06:25:14 matthias Exp $";
|
static char rcsid[] = "$NetBSD: suff.c,v 1.81 2016/03/15 18:30:14 matthias Exp $";
|
||||||
#else
|
#else
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)suff.c 8.4 (Berkeley) 3/21/94";
|
static char sccsid[] = "@(#)suff.c 8.4 (Berkeley) 3/21/94";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: suff.c,v 1.80 2016/03/15 06:25:14 matthias Exp $");
|
__RCSID("$NetBSD: suff.c,v 1.81 2016/03/15 18:30:14 matthias Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
#endif
|
#endif
|
||||||
|
@ -2016,9 +2016,10 @@ SuffFindArchiveDeps(GNode *gn, Lst slst)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Flag the member as such so we remember to look in the archive for
|
* Flag the member as such so we remember to look in the archive for
|
||||||
* its modification time.
|
* its modification time. The OP_JOIN | OP_MADE is needed because this
|
||||||
|
* target should never get made.
|
||||||
*/
|
*/
|
||||||
mem->type |= OP_MEMBER;
|
mem->type |= OP_MEMBER | OP_JOIN | OP_MADE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
|
|
Loading…
Reference in New Issue