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: clean up comments



details:   https://anonhg.NetBSD.org/src/rev/ad04da7be9ab
branches:  trunk
changeset: 959140:ad04da7be9ab
user:      rillig <rillig%NetBSD.org@localhost>
date:      Mon Feb 01 21:32:54 2021 +0000

description:
make: clean up comments

diffstat:

 usr.bin/make/make.h |  12 +++++++-----
 usr.bin/make/meta.c |   4 ++--
 2 files changed, 9 insertions(+), 7 deletions(-)

diffs (53 lines):

diff -r a6001cd63231 -r ad04da7be9ab usr.bin/make/make.h
--- a/usr.bin/make/make.h       Mon Feb 01 21:09:25 2021 +0000
+++ b/usr.bin/make/make.h       Mon Feb 01 21:32:54 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: make.h,v 1.249 2021/02/01 21:09:25 rillig Exp $        */
+/*     $NetBSD: make.h,v 1.250 2021/02/01 21:32:54 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -654,11 +654,13 @@
        /* -n: execute almost no commands from the targets */
        Boolean noExecute;
 
-       /* -q: if true, we aren't supposed to really make anything, just see
-        * if the targets are out-of-date */
+       /*
+        * -q: if true, do not really make anything, just see if the targets
+        * are out-of-date
+        */
        Boolean queryFlag;
 
-       /* -r: raw mode, without loading the builtin rules. */
+       /* -r: raw mode, do not load the builtin rules. */
        Boolean noBuiltins;
 
        /* -s: don't echo the shell commands before executing them */
@@ -676,7 +678,7 @@
        /* -W: if true, makefile parsing warnings are treated as errors */
        Boolean parseWarnFatal;
 
-       /* -w: print Entering and Leaving for submakes */
+       /* -w: print 'Entering' and 'Leaving' for submakes */
        Boolean enterFlag;
 
        /* -X: if true, do not export variables set on the command line to the
diff -r a6001cd63231 -r ad04da7be9ab usr.bin/make/meta.c
--- a/usr.bin/make/meta.c       Mon Feb 01 21:09:25 2021 +0000
+++ b/usr.bin/make/meta.c       Mon Feb 01 21:32:54 2021 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: meta.c,v 1.169 2021/01/16 20:49:31 rillig Exp $ */
+/*      $NetBSD: meta.c,v 1.170 2021/02/01 21:32:54 rillig Exp $ */
 
 /*
  * Implement 'meta' mode.
@@ -1194,7 +1194,7 @@
                    /*
                     * We need to track pathnames per-process.
                     *
-                    * Each process run by make, starts off in the 'CWD'
+                    * Each process run by make starts off in the 'CWD'
                     * recorded in the .meta file, if it chdirs ('C')
                     * elsewhere we need to track that - but only for
                     * that process.  If it forks ('F'), we initialize



Home | Main Index | Thread Index | Old Index