convert error messages into english

This commit is contained in:
christos 2001-01-14 06:02:25 +00:00
parent 07c4e36361
commit 3fbe1ebe81
1 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: parse.c,v 1.60 2001/01/14 05:41:08 christos Exp $ */
/* $NetBSD: parse.c,v 1.61 2001/01/14 06:02:25 christos Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@ -39,14 +39,14 @@
*/
#ifdef MAKE_BOOTSTRAP
static char rcsid[] = "$NetBSD: parse.c,v 1.60 2001/01/14 05:41:08 christos Exp $";
static char rcsid[] = "$NetBSD: parse.c,v 1.61 2001/01/14 06:02:25 christos Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94";
#else
__RCSID("$NetBSD: parse.c,v 1.60 2001/01/14 05:41:08 christos Exp $");
__RCSID("$NetBSD: parse.c,v 1.61 2001/01/14 06:02:25 christos Exp $");
#endif
#endif /* not lint */
#endif
@ -1603,13 +1603,13 @@ ParseAddCmd(gnp, cmd)
/* XXX: We cannot do this until we fix the tree */
(void)Lst_AtEnd(gn->commands, cmd);
Parse_Error (PARSE_WARNING,
"overriding commands for target \"%s\" ignored; "
"previous commands defined at %s: %d",
"overriding commands for target \"%s\"; "
"previous commands defined at %s: %d ignored",
gn->name, gn->fname, gn->lineno);
#else
Parse_Error (PARSE_WARNING,
"ignoring commands for target \"%s\" ignored; "
"previous commands defined at %s: %d",
"ignoring commands for target \"%s\"; "
"using previous commands defined at %s: %d",
gn->name, gn->fname, gn->lineno);
#endif
}