From dff3ccad4457067b1c5b487d30a9c71eaff31c31 Mon Sep 17 00:00:00 2001 From: thorpej Date: Fri, 27 Sep 1996 02:36:58 +0000 Subject: [PATCH] Fix extra "make:" and newline in error message. From enami tsugutomo , PR #2651. --- usr.bin/make/parse.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index e0bf1464a826..e635d9556bd8 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -1,4 +1,4 @@ -/* $NetBSD: parse.c,v 1.25 1996/09/13 04:22:09 christos Exp $ */ +/* $NetBSD: parse.c,v 1.26 1996/09/27 02:36:58 thorpej Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)parse.c 5.18 (Berkeley) 2/19/91"; #else -static char rcsid[] = "$NetBSD: parse.c,v 1.25 1996/09/13 04:22:09 christos Exp $"; +static char rcsid[] = "$NetBSD: parse.c,v 1.26 1996/09/27 02:36:58 thorpej Exp $"; #endif #endif /* not lint */ @@ -2597,7 +2597,7 @@ Parse_MainName() main = Lst_Init (FALSE); if (mainNode == NILGNODE) { - Punt ("make: no target to make.\n"); + Punt ("no target to make."); /*NOTREACHED*/ } else if (mainNode->type & OP_DOUBLEDEP) { (void) Lst_AtEnd (main, (ClientData)mainNode);