diff options
author | gdt <gdt@pkgsrc.org> | 2021-01-13 18:01:49 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2021-01-13 18:01:49 +0000 |
commit | e97001454653d6c2673de7412a5f990f8452c65f (patch) | |
tree | 1c4483c1149f52a48fc6fdc9f006081dbf7a4ccc /mk | |
parent | 2270ca809eea6c080fce117525ae481fb6daf66e (diff) | |
download | pkgsrc-e97001454653d6c2673de7412a5f990f8452c65f.tar.gz |
mk/misc/show.mk: Only advise changing user-settable variables
Before, it was easy for a user to misinterpret the message as
e.g. setting PYPACKAGE for gnome-doc-utils.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/misc/show.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/misc/show.mk b/mk/misc/show.mk index 0940d5cd87e..58f8daf9290 100644 --- a/mk/misc/show.mk +++ b/mk/misc/show.mk @@ -1,4 +1,4 @@ -# $NetBSD: show.mk,v 1.27 2020/12/14 00:14:48 rillig Exp $ +# $NetBSD: show.mk,v 1.28 2021/01/13 18:01:49 gdt Exp $ # # This file contains some targets that print information gathered from # variables. They do not modify any variables. @@ -72,9 +72,9 @@ show-build-defs: .PHONY . endif . endfor @${ECHO} "" - @${ECHO} "You may want to abort the process now with CTRL-C and change their value" - @${ECHO} "before continuing. Be sure to run \`${MAKE} clean' after" - @${ECHO} "the changes." + @${ECHO} "You may want to abort the process now with CTRL-C and change the value" + @${ECHO} "of variables in the first group before continuing. Be sure to run" + @${ECHO} "\`${MAKE} clean' after the changes." @${ECHO} "==========================================================================" .endif |