diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-11-10 13:59:49 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-11-10 13:59:49 +0000 |
commit | aeeb6209704c35c45e5f887b4e83c298ef0bd4ae (patch) | |
tree | e9262c1643d836b88ce2f5ad6eadb3d9588d31fa /usr.bin/make/gnode.h | |
parent | 8e197da0ab3408dd2bdeef2d71d7f18d68e24ba6 (diff) |
UNMADE -> UNKNOWN
Diffstat (limited to 'usr.bin/make/gnode.h')
-rw-r--r-- | usr.bin/make/gnode.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/usr.bin/make/gnode.h b/usr.bin/make/gnode.h index fffe984b1dd..aea2457f39f 100644 --- a/usr.bin/make/gnode.h +++ b/usr.bin/make/gnode.h @@ -1,7 +1,7 @@ #ifndef GNODE_H #define GNODE_H /* $OpenPackages$ */ -/* $OpenBSD: gnode.h,v 1.9 2007/11/10 12:51:40 espie Exp $ */ +/* $OpenBSD: gnode.h,v 1.10 2007/11/10 13:59:48 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. @@ -68,7 +68,7 @@ struct Suff_; * to create this target. */ -#define UNMADE 0 +#define UNKNOWN 0 #define BEINGMADE 1 #define MADE 2 #define UPTODATE 3 @@ -93,16 +93,14 @@ struct GNode_ { * made */ char built_status; /* Set to reflect the state of processing * on this node: - * UNMADE - Not examined yet - * BEINGMADE - Target is already being made. - * Indicates a cycle in the graph. (compat - * mode only) + * UNKNOWN - Not examined yet + * BEINGMADE - Target is currently being made. * MADE - Was out-of-date and has been made * UPTODATE - Was already up-to-date * ERROR - An error occurred while it was being * made (used only in compat mode) * ABORTED - The target was aborted due to - * an error making an inferior (compat). + * an error making an inferior. * CYCLE - Marked as potentially being part of * a graph cycle. If we come back to a * node marked this way, it is printed |