Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/make make: don't assemble identifiers from smaller t...



details:   https://anonhg.NetBSD.org/src/rev/ab5d50e7fedb
branches:  trunk
changeset: 372868:ab5d50e7fedb
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sun Jan 01 16:46:26 2023 +0000

description:
make: don't assemble identifiers from smaller tokens

No binary change.

diffstat:

 usr.bin/make/main.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r dc5f3ea973be -r ab5d50e7fedb usr.bin/make/main.c
--- a/usr.bin/make/main.c       Sun Jan 01 00:09:52 2023 +0000
+++ b/usr.bin/make/main.c       Sun Jan 01 16:46:26 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: main.c,v 1.585 2022/10/10 21:17:25 rillig Exp $        */
+/*     $NetBSD: main.c,v 1.586 2023/01/01 16:46:26 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -111,7 +111,7 @@
 #include "trace.h"
 
 /*     "@(#)main.c     8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: main.c,v 1.585 2022/10/10 21:17:25 rillig Exp $");
+MAKE_RCSID("$NetBSD: main.c,v 1.586 2023/01/01 16:46:26 rillig Exp $");
 #if defined(MAKE_NATIVE) && !defined(lint)
 __COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993 "
            "The Regents of the University of California.  "
@@ -1385,7 +1385,7 @@
        Global_Set(MAKEOVERRIDES, "");
        Global_Set("MFLAGS", "");
        Global_Set(".ALLTARGETS", "");
-       Var_Set(SCOPE_CMDLINE, MAKE_LEVEL ".ENV", MAKE_LEVEL_ENV);
+       Var_Set(SCOPE_CMDLINE, ".MAKE.LEVEL.ENV", MAKE_LEVEL_ENV);
 
        /* Set some other useful variables. */
        {



Home | Main Index | Thread Index | Old Index