diff options
| author | sommerfeld <sommerfeld@NetBSD.org> | 2000-12-05 17:07:01 +0000 |
|---|---|---|
| committer | sommerfeld <sommerfeld@NetBSD.org> | 2000-12-05 17:07:01 +0000 |
| commit | e65a50bf349fabc49e4fb2ecbe21a9c5729021b5 (patch) | |
| tree | 7b5b4a69c9954660a5f07b86c860ebc992fd4902 /usr.bin/make/parse.c | |
| parent | 5348dfb6ac10b3032144a954a1ff83a1598532dc (diff) | |
Boolean consistancy (use TRUE, not 1)
Diffstat (limited to 'usr.bin/make/parse.c')
| -rw-r--r-- | usr.bin/make/parse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index 5c3751fd6a5..cc1369d3569 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -1,4 +1,4 @@ -/* $NetBSD: parse.c,v 1.53 2000/10/11 14:46:12 is Exp $ */ +/* $NetBSD: parse.c,v 1.54 2000/12/05 17:07:01 sommerfeld Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -39,14 +39,14 @@ */ #ifdef MAKE_BOOTSTRAP -static char rcsid[] = "$NetBSD: parse.c,v 1.53 2000/10/11 14:46:12 is Exp $"; +static char rcsid[] = "$NetBSD: parse.c,v 1.54 2000/12/05 17:07:01 sommerfeld Exp $"; #else #include <sys/cdefs.h> #ifndef lint #if 0 static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94"; #else -__RCSID("$NetBSD: parse.c,v 1.53 2000/10/11 14:46:12 is Exp $"); +__RCSID("$NetBSD: parse.c,v 1.54 2000/12/05 17:07:01 sommerfeld Exp $"); #endif #endif /* not lint */ #endif @@ -943,7 +943,7 @@ ParseDoDependency (line) break; } case SingleShell: - compatMake = 1; + compatMake = TRUE; break; case Order: predecessor = NILGNODE; |
