Remove extra space in usage message.
This commit is contained in:
parent
8d97ea2fa6
commit
afa06162bc
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: main.c,v 1.87 2003/03/14 05:19:43 thorpej Exp $ */
|
||||
/* $NetBSD: main.c,v 1.88 2003/05/10 19:21:40 jmmv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988, 1989, 1990, 1993
|
||||
|
@ -39,7 +39,7 @@
|
|||
*/
|
||||
|
||||
#ifdef MAKE_BOOTSTRAP
|
||||
static char rcsid[] = "$NetBSD: main.c,v 1.87 2003/03/14 05:19:43 thorpej Exp $";
|
||||
static char rcsid[] = "$NetBSD: main.c,v 1.88 2003/05/10 19:21:40 jmmv Exp $";
|
||||
#else
|
||||
#include <sys/cdefs.h>
|
||||
#ifndef lint
|
||||
|
@ -51,7 +51,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993\n\
|
|||
#if 0
|
||||
static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94";
|
||||
#else
|
||||
__RCSID("$NetBSD: main.c,v 1.87 2003/03/14 05:19:43 thorpej Exp $");
|
||||
__RCSID("$NetBSD: main.c,v 1.88 2003/05/10 19:21:40 jmmv Exp $");
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
#endif
|
||||
|
@ -1565,7 +1565,7 @@ static void
|
|||
usage(void)
|
||||
{
|
||||
(void)fprintf(stderr,
|
||||
"Usage: %s [-Beiknqrst] [-D variable] [-d flags] [-f makefile ]\n\
|
||||
"Usage: %s [-Beiknqrst] [-D variable] [-d flags] [-f makefile]\n\
|
||||
[-I directory] [-j max_jobs] [-m directory] [-V variable]\n\
|
||||
[variable=value] [target ...]\n", progname);
|
||||
exit(2);
|
||||
|
|
Loading…
Reference in New Issue