diff options
author | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2008-03-05 20:24:38 +0000 |
---|---|---|
committer | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2008-03-05 20:24:38 +0000 |
commit | b9d442c148d4ccf4e3b41becf690dfec94a075e0 (patch) | |
tree | 8a494347556b74190c4b2dd7c63496c9a7fba578 /usr.bin/make/main.c | |
parent | 0c352199787a2042eacfe1e10d0fdd37c3fb5dcb (diff) | |
download | src-b9d442c148d4ccf4e3b41becf690dfec94a075e0.tar.gz src-b9d442c148d4ccf4e3b41becf690dfec94a075e0.zip |
The non-POSIX environment variable MAKE was superseded
by MAKEFLAGS ages ago, so don't mention it in comments.
Tested with: cmp(1)
Notes
Notes:
svn path=/head/; revision=176842
Diffstat (limited to 'usr.bin/make/main.c')
-rw-r--r-- | usr.bin/make/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index a296b2bd2a05..b75004fdf92d 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 |