summaryrefslogtreecommitdiff
path: root/usr.bin/make/parse.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2001-01-14 06:02:25 +0000
committerchristos <christos@NetBSD.org>2001-01-14 06:02:25 +0000
commit3fbe1ebe81fef8b87970f8ab9edf2a06ee708b7d (patch)
tree5d1bb4b905b3ba6accbd1ed0b46451ba3b36a2ca /usr.bin/make/parse.c
parent07c4e36361b29d23fa874577870a355a0f011347 (diff)
convert error messages into english
Diffstat (limited to 'usr.bin/make/parse.c')
-rw-r--r--usr.bin/make/parse.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c
index e9a19978361..05ada9f44bc 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -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
}