Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make from Max Okumoto: debug should be int, not bool...
details: https://anonhg.NetBSD.org/src/rev/bd3b5b8a5ecf
branches: trunk
changeset: 583379:bd3b5b8a5ecf
user: christos <christos%NetBSD.org@localhost>
date: Wed Aug 03 20:55:01 2005 +0000
description:
from Max Okumoto: debug should be int, not boolean.
diffstat:
usr.bin/make/main.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r f201b8d1278e -r bd3b5b8a5ecf usr.bin/make/main.c
--- a/usr.bin/make/main.c Wed Aug 03 18:20:11 2005 +0000
+++ b/usr.bin/make/main.c Wed Aug 03 20:55:01 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.112 2005/07/25 22:55:58 christos Exp $ */
+/* $NetBSD: main.c,v 1.113 2005/08/03 20:55:01 christos Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -69,7 +69,7 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: main.c,v 1.112 2005/07/25 22:55:58 christos Exp $";
+static char rcsid[] = "$NetBSD: main.c,v 1.113 2005/08/03 20:55:01 christos Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
@@ -81,7 +81,7 @@
#if 0
static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94";
#else
-__RCSID("$NetBSD: main.c,v 1.112 2005/07/25 22:55:58 christos Exp $");
+__RCSID("$NetBSD: main.c,v 1.113 2005/08/03 20:55:01 christos Exp $");
#endif
#endif /* not lint */
#endif
@@ -158,7 +158,7 @@
int maxJobs; /* -j argument */
static int maxLocal; /* -L argument */
Boolean compatMake; /* -B argument */
-Boolean debug; /* -d flag */
+int debug; /* -d argument */
Boolean noExecute; /* -n flag */
Boolean noRecursiveExecute; /* -N flag */
Boolean keepgoing; /* -k flag */
Home |
Main Index |
Thread Index |
Old Index