Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): add remarks for missing command line o...



details:   https://anonhg.NetBSD.org/src/rev/308d597e8e7b
branches:  trunk
changeset: 942428:308d597e8e7b
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sun Nov 08 01:56:54 2020 +0000

description:
make(1): add remarks for missing command line options in MAKEFLAGS

diffstat:

 usr.bin/make/main.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (34 lines):

diff -r b2a71422c5ef -r 308d597e8e7b usr.bin/make/main.c
--- a/usr.bin/make/main.c       Sun Nov 08 01:52:24 2020 +0000
+++ b/usr.bin/make/main.c       Sun Nov 08 01:56:54 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: main.c,v 1.440 2020/11/08 01:52:24 rillig Exp $        */
+/*     $NetBSD: main.c,v 1.441 2020/11/08 01:56:54 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -109,7 +109,7 @@
 #include "trace.h"
 
 /*     "@(#)main.c     8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: main.c,v 1.440 2020/11/08 01:52:24 rillig Exp $");
+MAKE_RCSID("$NetBSD: main.c,v 1.441 2020/11/08 01:56:54 rillig Exp $");
 #if defined(MAKE_NATIVE) && !defined(lint)
 __COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993 "
            "The Regents of the University of California.  "
@@ -487,6 +487,7 @@
                break;
        case 'W':
                opts.parseWarnFatal = TRUE;
+               /* XXX: why no Var_Append? */
                break;
        case 'X':
                opts.varNoExportEnv = TRUE;
@@ -522,6 +523,7 @@
                break;
        case 'm':
                MainParseArgSysInc(argvalue);
+               /* XXX: why no Var_Append? */
                break;
        case 'n':
                opts.noExecute = TRUE;



Home | Main Index | Thread Index | Old Index