Received: by mail.netbsd.org (Postfix, from userid 605) id 7048D84E7A; Mon, 28 May 2018 22:34:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D5B6D84D57 for ; Mon, 28 May 2018 22:34:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id hprMCWJz3lWh for ; Mon, 28 May 2018 22:34:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2C40F84D36 for ; Mon, 28 May 2018 22:34:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2646FFBEB; Mon, 28 May 2018 22:34:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1527546887290470" MIME-Version: 1.0 Date: Mon, 28 May 2018 22:34:47 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/mk/misc To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20180528223447.2646FFBEB@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1527546887290470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Mon May 28 22:34:47 UTC 2018 Modified Files: pkgsrc/mk/misc: show.mk Log Message: mk/misc/show.mk: improve wording of the help text To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/mk/misc/show.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1527546887290470 Content-Disposition: inline Content-Length: 1474 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/misc/show.mk diff -u pkgsrc/mk/misc/show.mk:1.13 pkgsrc/mk/misc/show.mk:1.14 --- pkgsrc/mk/misc/show.mk:1.13 Mon Feb 26 22:51:42 2018 +++ pkgsrc/mk/misc/show.mk Mon May 28 22:34:47 2018 @@ -1,4 +1,4 @@ -# $NetBSD: show.mk,v 1.13 2018/02/26 22:51:42 rillig Exp $ +# $NetBSD: show.mk,v 1.14 2018/05/28 22:34:47 rillig Exp $ # # This file contains some targets that print information gathered from # variables. They do not modify any variables. @@ -82,15 +82,15 @@ show-build-defs: .PHONY # Prints a list of (hopefully) all pkgsrc variables that are visible # to the user or the package developer. It is intended to give # interested parties a better insight into the inner workings of -# pkgsrc. Each variable name is prefixed with a "category": +# pkgsrc. Each variable name is prefixed with a "scope": # # * "usr" for user-settable variables, # * "pkg" for package-settable variables, # * "sys" for system-defined variables. # -# For each of the variable groups (e.g. "build", "extract"), a -# specialized target show-all-${group} is defined, so that -# show-all-extract only shows that group. +# The variables are listed in groups (e.g. "build", "extract"). +# For each of these groups, a specialized target show-all-${group} +# is defined, e.g. "show-all-extract" for the "extract" group. # # CAVEAT: Some few variable values that are shown here may be # misleading. For example, make(1)'s := operator leaves references --_----------=_1527546887290470--