Module Name: src
Committed By: rillig
Date: Sun Sep 10 21:52:37 UTC 2023
Modified Files:
src/usr.bin/make: main.c make.1
Log Message:
make: fix typo
To generate a diff of this commit:
cvs rdiff -u -r1.598 -r1.599 src/usr.bin/make/main.c
cvs rdiff -u -r1.370 -r1.371 src/usr.bin/make/make.1
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/main.c
diff -u src/usr.bin/make/main.c:1.598 src/usr.bin/make/main.c:1.599
--- src/usr.bin/make/main.c:1.598 Sun Sep 10 11:41:32 2023
+++ src/usr.bin/make/main.c Sun Sep 10 21:52:36 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.598 2023/09/10 11:41:32 rillig Exp $ */
+/* $NetBSD: main.c,v 1.599 2023/09/10 21:52:36 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -111,7 +111,7 @@
#include "trace.h"
/* "@(#)main.c 8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: main.c,v 1.598 2023/09/10 11:41:32 rillig Exp $");
+MAKE_RCSID("$NetBSD: main.c,v 1.599 2023/09/10 21:52:36 rillig Exp $");
#if defined(MAKE_NATIVE) && !defined(lint)
__COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993 "
"The Regents of the University of California. "
@@ -1377,7 +1377,7 @@ main_Init(int argc, char **argv)
#endif
Global_Set(".MAKE.MAKEFILE_PREFERENCE", MAKEFILE_PREFERENCE_LIST);
Global_Set(".MAKE.DEPENDFILE", ".depend");
- /* Tell makefiles like jobs.mk wether we support -jC */
+ /* Tell makefiles like jobs.mk whether we support -jC */
#ifdef _SC_NPROCESSORS_ONLN
Global_Set_ReadOnly(".MAKE.JOBS.C", "yes");
#else
Index: src/usr.bin/make/make.1
diff -u src/usr.bin/make/make.1:1.370 src/usr.bin/make/make.1:1.371
--- src/usr.bin/make/make.1:1.370 Sat Sep 9 16:41:04 2023
+++ src/usr.bin/make/make.1 Sun Sep 10 21:52:36 2023
@@ -1,4 +1,4 @@
-.\" $NetBSD: make.1,v 1.370 2023/09/09 16:41:04 sjg Exp $
+.\" $NetBSD: make.1,v 1.371 2023/09/10 21:52:36 rillig Exp $
.\"
.\" Copyright (c) 1990, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -978,7 +978,7 @@ The argument to the
.Fl j
option.
.It Va .MAKE.JOBS.C
-A read-only boolean that indicates wether the
+A read-only boolean that indicates whether the
.Fl j
option supports use of
.Ql C .