make(1): spell nonexistent consistently

This commit is contained in:
rillig 2020-12-18 15:47:34 +00:00
parent e5d53595d6
commit 6e84975ccd
6 changed files with 26 additions and 26 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: tutorial.ms,v 1.13 2017/03/01 13:05:11 kre Exp $ .\" $NetBSD: tutorial.ms,v 1.14 2020/12/18 15:47:34 rillig Exp $
.\" Copyright (c) 1988, 1989, 1993 .\" Copyright (c) 1988, 1989, 1993
.\" The Regents of the University of California. All rights reserved. .\" The Regents of the University of California. All rights reserved.
.\" .\"
@ -1918,15 +1918,15 @@ Suff_FindDeps (jive.c)
applying .l -> .c to "jive.l" applying .l -> .c to "jive.l"
Suff_FindDeps (jive.l) Suff_FindDeps (jive.l)
Examining jive.l...modified 17:16:01 Oct 4, 1987...up-to-date Examining jive.l...modified 17:16:01 Oct 4, 1987...up-to-date
Examining jive.c...non-existent...out-of-date Examining jive.c...nonexistent...out-of-date
--- jive.c --- --- jive.c ---
lex jive.l lex jive.l
\&.\|.\|. meaningless lex output deleted .\|.\|. \&.\|.\|. meaningless lex output deleted .\|.\|.
mv lex.yy.c jive.c mv lex.yy.c jive.c
Examining jive.o...non-existent...out-of-date Examining jive.o...nonexistent...out-of-date
--- jive.o --- --- jive.o ---
cc -c jive.c cc -c jive.c
Examining jive.out...non-existent...out-of-date Examining jive.out...nonexistent...out-of-date
--- jive.out --- --- jive.out ---
cc -o jive.out jive.o cc -o jive.out jive.o
.DE .DE
@ -2871,7 +2871,7 @@ current directory. While people have suggested that PMake should read
the directories each time, my experience suggests that the caching seldom the directories each time, my experience suggests that the caching seldom
causes problems. In addition, not caching the directories slows things causes problems. In addition, not caching the directories slows things
down enormously because of PMake's attempts to apply transformation down enormously because of PMake's attempts to apply transformation
rules through non-existent files \*- the number of extra file-system rules through nonexistent files \*- the number of extra file-system
searches is truly staggering, especially if many files without searches is truly staggering, especially if many files without
suffixes are used and the null suffix isn't changed from suffixes are used and the null suffix isn't changed from
.CW .out . .CW .out .

View File

@ -1,4 +1,4 @@
/* $NetBSD: arch.c,v 1.188 2020/12/13 20:14:48 rillig Exp $ */ /* $NetBSD: arch.c,v 1.189 2020/12/18 15:47:34 rillig Exp $ */
/* /*
* Copyright (c) 1988, 1989, 1990, 1993 * Copyright (c) 1988, 1989, 1990, 1993
@ -125,7 +125,7 @@
#include "config.h" #include "config.h"
/* "@(#)arch.c 8.2 (Berkeley) 1/2/94" */ /* "@(#)arch.c 8.2 (Berkeley) 1/2/94" */
MAKE_RCSID("$NetBSD: arch.c,v 1.188 2020/12/13 20:14:48 rillig Exp $"); MAKE_RCSID("$NetBSD: arch.c,v 1.189 2020/12/18 15:47:34 rillig Exp $");
typedef struct List ArchList; typedef struct List ArchList;
typedef struct ListNode ArchListNode; typedef struct ListNode ArchListNode;
@ -903,7 +903,7 @@ Arch_UpdateMTime(GNode *gn)
gn->mtime = 0; gn->mtime = 0;
} }
/* Given a non-existent archive member's node, update gn->mtime from its /* Given a nonexistent archive member's node, update gn->mtime from its
* archived form, if it exists. */ * archived form, if it exists. */
void void
Arch_UpdateMemberMTime(GNode *gn) Arch_UpdateMemberMTime(GNode *gn)

View File

@ -1,4 +1,4 @@
/* $NetBSD: make.c,v 1.230 2020/12/18 14:46:44 rillig Exp $ */ /* $NetBSD: make.c,v 1.231 2020/12/18 15:47:34 rillig Exp $ */
/* /*
* Copyright (c) 1988, 1989, 1990, 1993 * Copyright (c) 1988, 1989, 1990, 1993
@ -102,7 +102,7 @@
#include "job.h" #include "job.h"
/* "@(#)make.c 8.1 (Berkeley) 6/6/93" */ /* "@(#)make.c 8.1 (Berkeley) 6/6/93" */
MAKE_RCSID("$NetBSD: make.c,v 1.230 2020/12/18 14:46:44 rillig Exp $"); MAKE_RCSID("$NetBSD: make.c,v 1.231 2020/12/18 15:47:34 rillig Exp $");
/* Sequence # to detect recursion. */ /* Sequence # to detect recursion. */
static unsigned int checked_seqno = 1; static unsigned int checked_seqno = 1;
@ -202,7 +202,7 @@ IsOODateRegular(GNode *gn)
} }
if (gn->mtime == 0 && !(gn->type & OP_OPTIONAL)) { if (gn->mtime == 0 && !(gn->type & OP_OPTIONAL)) {
DEBUG0(MAKE, "non-existent and no sources..."); DEBUG0(MAKE, "nonexistent and no sources...");
return TRUE; return TRUE;
} }
@ -241,7 +241,7 @@ GNode_IsOODate(GNode *gn)
debug_printf("modified %s...", debug_printf("modified %s...",
Targ_FmtTime(gn->mtime)); Targ_FmtTime(gn->mtime));
else else
debug_printf("non-existent..."); debug_printf("nonexistent...");
} }
} }
@ -275,7 +275,7 @@ GNode_IsOODate(GNode *gn)
/* /*
* always out of date if no children and :: target * always out of date if no children and :: target
* or non-existent. * or nonexistent.
*/ */
oodate = (gn->mtime == 0 || Arch_LibOODate(gn) || oodate = (gn->mtime == 0 || Arch_LibOODate(gn) ||
(gn->youngestChild == NULL && (gn->youngestChild == NULL &&
@ -309,10 +309,10 @@ GNode_IsOODate(GNode *gn)
oodate = TRUE; oodate = TRUE;
} else { } else {
/* /*
* When a non-existing child with no sources * When a nonexistent child with no sources
* (such as a typically used FORCE source) has been made and * (such as a typically used FORCE source) has been made and
* the target of the child (usually a directory) has the same * the target of the child (usually a directory) has the same
* timestamp as the timestamp just given to the non-existing * timestamp as the timestamp just given to the nonexistent
* child after it was considered made. * child after it was considered made.
*/ */
if (DEBUG(MAKE)) { if (DEBUG(MAKE)) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: suff.c,v 1.330 2020/12/13 20:14:48 rillig Exp $ */ /* $NetBSD: suff.c,v 1.331 2020/12/18 15:47:34 rillig Exp $ */
/* /*
* Copyright (c) 1988, 1989, 1990, 1993 * Copyright (c) 1988, 1989, 1990, 1993
@ -114,7 +114,7 @@
#include "dir.h" #include "dir.h"
/* "@(#)suff.c 8.4 (Berkeley) 3/21/94" */ /* "@(#)suff.c 8.4 (Berkeley) 3/21/94" */
MAKE_RCSID("$NetBSD: suff.c,v 1.330 2020/12/13 20:14:48 rillig Exp $"); MAKE_RCSID("$NetBSD: suff.c,v 1.331 2020/12/18 15:47:34 rillig Exp $");
typedef List SuffixList; typedef List SuffixList;
typedef ListNode SuffixListNode; typedef ListNode SuffixListNode;
@ -2012,7 +2012,7 @@ CandidateSearcher_CleanUp(CandidateSearcher *cs)
* is set for the given node and all its implied children. * is set for the given node and all its implied children.
* *
* The path found by this target is the shortest path in the transformation * The path found by this target is the shortest path in the transformation
* graph, which may pass through non-existent targets, to an existing target. * graph, which may pass through nonexistent targets, to an existing target.
* The search continues on all paths from the root suffix until a file is * The search continues on all paths from the root suffix until a file is
* found. I.e. if there's a path .o -> .c -> .l -> .l,v from the root and the * found. I.e. if there's a path .o -> .c -> .l -> .l,v from the root and the
* .l,v file exists but the .c and .l files don't, the search will branch out * .l,v file exists but the .c and .l files don't, the search will branch out

View File

@ -1,4 +1,4 @@
/* $NetBSD: targ.c,v 1.158 2020/12/18 14:46:44 rillig Exp $ */ /* $NetBSD: targ.c,v 1.159 2020/12/18 15:47:34 rillig Exp $ */
/* /*
* Copyright (c) 1988, 1989, 1990, 1993 * Copyright (c) 1988, 1989, 1990, 1993
@ -113,7 +113,7 @@
#include "dir.h" #include "dir.h"
/* "@(#)targ.c 8.2 (Berkeley) 3/19/94" */ /* "@(#)targ.c 8.2 (Berkeley) 3/19/94" */
MAKE_RCSID("$NetBSD: targ.c,v 1.158 2020/12/18 14:46:44 rillig Exp $"); MAKE_RCSID("$NetBSD: targ.c,v 1.159 2020/12/18 15:47:34 rillig Exp $");
/* /*
* All target nodes that appeared on the left-hand side of one of the * All target nodes that appeared on the left-hand side of one of the
@ -507,7 +507,7 @@ Targ_PrintNode(GNode *gn, int pass)
Targ_FmtTime(gn->mtime), Targ_FmtTime(gn->mtime),
made_name(gn->made)); made_name(gn->made));
} else if (gn->made != UNMADE) { } else if (gn->made != UNMADE) {
debug_printf("# non-existent (maybe): %s\n", debug_printf("# nonexistent (maybe): %s\n",
made_name(gn->made)); made_name(gn->made));
} else } else
debug_printf("# unmade\n"); debug_printf("# unmade\n");

View File

@ -5,16 +5,16 @@ ExamineLater: need to examine "optional"
ExamineLater: need to examine "optional-cohort" ExamineLater: need to examine "optional-cohort"
Make_ExpandUse: examine optional Make_ExpandUse: examine optional
Make_ExpandUse: examine optional-cohort Make_ExpandUse: examine optional-cohort
Examining optional...non-existent...up-to-date. Examining optional...nonexistent...up-to-date.
Examining optional-cohort...non-existent...:: operator and no sources...out-of-date. Examining optional-cohort...nonexistent...:: operator and no sources...out-of-date.
: A leaf node using '::' is considered out-of-date. : A leaf node using '::' is considered out-of-date.
recheck(optional-cohort): update time from nonexistent to now recheck(optional-cohort): update time from nonexistent to now
Examining important...non-existent...modified before source "optional-cohort"...out-of-date. Examining important...nonexistent...modified before source "optional-cohort"...out-of-date.
: important is made. : important is made.
recheck(important): update time from nonexistent to now recheck(important): update time from nonexistent to now
Examining all...non-existent...modified before source "important"...out-of-date. Examining all...nonexistent...modified before source "important"...out-of-date.
: all is made. : all is made.
recheck(all): update time from nonexistent to now recheck(all): update time from nonexistent to now
Examining .END...non-existent...non-existent and no sources...out-of-date. Examining .END...nonexistent...nonexistent and no sources...out-of-date.
recheck(.END): update time from nonexistent to now recheck(.END): update time from nonexistent to now
exit status 0 exit status 0