diff options
| author | rillig <rillig@NetBSD.org> | 2020-09-14 17:47:05 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2020-09-14 17:47:05 +0000 |
| commit | ff8fb1ca4312762b5dc6f2fc1656ff68b6e4193f (patch) | |
| tree | 8a3e987bfbda000bf6309a0845046031b2cc3dfb /usr.bin/make/parse.c | |
| parent | 64ad9918f4fe826232c445f7f018de4ad968ec02 (diff) | |
make(1): fix documentation of ParseLinkSrcArgs.specType
That code is never called for .SUFFIXES, but for .END.
Diffstat (limited to 'usr.bin/make/parse.c')
| -rw-r--r-- | usr.bin/make/parse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index aa66c504226..535f0e085a0 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -1,4 +1,4 @@ -/* $NetBSD: parse.c,v 1.316 2020/09/14 17:44:57 rillig Exp $ */ +/* $NetBSD: parse.c,v 1.317 2020/09/14 17:47:05 rillig Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -131,7 +131,7 @@ #include "pathnames.h" /* "@(#)parse.c 8.3 (Berkeley) 3/19/94" */ -MAKE_RCSID("$NetBSD: parse.c,v 1.316 2020/09/14 17:44:57 rillig Exp $"); +MAKE_RCSID("$NetBSD: parse.c,v 1.317 2020/09/14 17:47:05 rillig Exp $"); /* types and constants */ @@ -747,7 +747,7 @@ struct ParseLinkSrcArgs { GNode *cgn; /* The special target of the current dependency line. */ - /* Example: for ".SUFFIXES: .c.o", it is 'Suffixes'. */ + /* Example: for ".END: action", it is 'End'. */ ParseSpecial specType; }; |
