Module Name:    src
Committed By:   rillig
Date:           Fri Nov  6 21:12:20 UTC 2020

Modified Files:
        src/usr.bin/make: make.h

Log Message:
make(1): document DEBUG_LINT


To generate a diff of this commit:
cvs rdiff -u -r1.192 -r1.193 src/usr.bin/make/make.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/make.h
diff -u src/usr.bin/make/make.h:1.192 src/usr.bin/make/make.h:1.193
--- src/usr.bin/make/make.h:1.192	Fri Nov  6 21:09:06 2020
+++ src/usr.bin/make/make.h	Fri Nov  6 21:12:19 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: make.h,v 1.192 2020/11/06 21:09:06 rillig Exp $	*/
+/*	$NetBSD: make.h,v 1.193 2020/11/06 21:12:19 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -516,6 +516,10 @@ typedef enum DebugFlags {
     DEBUG_VAR		= 1 << 18,
     DEBUG_FOR		= 1 << 19,
 
+    /* Runs make in strict mode, with additional checks and better error
+     * handling.  This is not the default mode to preserve compatibility.
+     *
+     * XXX: This is not really a debug flag, it doesn't belong here. */
     DEBUG_LINT		= 1 << 20
 } DebugFlags;
 

Reply via email to