diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2023-07-08 21:51:46 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2023-07-08 21:51:46 +0000 |
commit | 7440cfea9f5b01585f4d94dfc2af6d0e0e47cfc4 (patch) | |
tree | 15d8f68345d41bd13a4f8431f0a3079ed9d35ad8 /usr.bin | |
parent | 3019c2f12b596460bd5862990edb10dbf0f9cacc (diff) |
max_processes -> max_jobs in usage();
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/make/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 93b38671e25..2ffd8456ca8 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.130 2023/05/30 04:42:21 espie Exp $ */ +/* $OpenBSD: main.c,v 1.131 2023/07/08 21:51:45 jmc Exp $ */ /* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */ /* @@ -941,7 +941,7 @@ usage() { (void)fprintf(stderr, "usage: make [-BeiknpqrSst] [-C directory] [-D variable] [-d flags] [-f mk]\n\ - [-I directory] [-j max_processes] [-m directory] [-V variable]\n\ + [-I directory] [-j max_jobs] [-m directory] [-V variable]\n\ [NAME=value ...] [target ...]\n"); exit(2); } |