=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/gnode.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- src/usr.bin/make/gnode.h 2007/11/06 21:12:23 1.8 +++ src/usr.bin/make/gnode.h 2007/11/10 12:51:40 1.9 @@ -1,7 +1,7 @@ #ifndef GNODE_H #define GNODE_H /* $OpenPackages$ */ -/* $OpenBSD: gnode.h,v 1.8 2007/11/06 21:12:23 espie Exp $ */ +/* $OpenBSD: gnode.h,v 1.9 2007/11/10 12:51:40 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. @@ -88,10 +88,10 @@ struct GNode_ { int special_op; /* special op to apply */ unsigned char special;/* type of special node */ - char make; /* true if this target needs to be remade */ + char must_make; /* true if this target needs to be remade */ char childMade; /* true if one of this target's children was * made */ - char made; /* Set to reflect the state of processing + char built_status; /* Set to reflect the state of processing * on this node: * UNMADE - Not examined yet * BEINGMADE - Target is already being made. @@ -106,7 +106,7 @@ * CYCLE - Marked as potentially being part of * a graph cycle. If we come back to a * node marked this way, it is printed - * and 'made' is changed to ENDCYCLE. + * and 'built_status' is changed to ENDCYCLE. * ENDCYCLE - the cycle has been completely * printed. Go back and unmark all its * members.