From b9d442c148d4ccf4e3b41becf690dfec94a075e0 Mon Sep 17 00:00:00 2001 From: Yaroslav Tykhiy Date: Wed, 5 Mar 2008 20:24:38 +0000 Subject: [PATCH] The non-POSIX environment variable MAKE was superseded by MAKEFLAGS ages ago, so don't mention it in comments. Tested with: cmp(1) --- usr.bin/make/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index a296b2bd2a0..b75004fdf92 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -1185,7 +1185,7 @@ main(int argc, char **argv) ReadMakefile(".depend"); - /* Install all the flags into the MAKE envariable. */ + /* Install all the flags into the MAKEFLAGS envariable. */ if (((p = Var_Value(".MAKEFLAGS", VAR_GLOBAL)) != NULL) && *p) setenv("MAKEFLAGS", p, 1); else