Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make convert error messages into english



details:   https://anonhg.NetBSD.org/src/rev/634c622cc7ef
branches:  trunk
changeset: 502238:634c622cc7ef
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Jan 14 06:02:25 2001 +0000

description:
convert error messages into english

diffstat:

 usr.bin/make/parse.c |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (44 lines):

diff -r 189699526414 -r 634c622cc7ef usr.bin/make/parse.c
--- a/usr.bin/make/parse.c      Sun Jan 14 05:41:08 2001 +0000
+++ b/usr.bin/make/parse.c      Sun Jan 14 06:02:25 2001 +0000
@@ -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 @@
        /* 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
     }



Home | Main Index | Thread Index | Old Index