summaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-08-28 00:07:40 +0200
committerAlejandro Colomar <alx@kernel.org>2023-08-28 00:10:45 +0200
commitaaae5c036de534a5c2a08573ee9b347f172dccea (patch)
tree9736eb328be25039b529dc8bdbc27f00d44891a8 /GNUmakefile
parentc988f384ed64ed419fed9796ada0671e6f090899 (diff)
*.mk: Remove 'V' variable
GNU Make (since version 4.4) provides the same functionality with `--debug=print`. Remove this custom variable, which is now redundant with the new option. - Define .SILENT: unconditionally. - Define HIDE_ERR unconditionally, and let the user redefine it to an empty string. Document this. Cc: Paul Smith <psmith@gnu.org> Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 8c8352dba..4dbde8732 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -142,14 +142,14 @@ $(MK):: ;
.PHONY: help-variables
help-variables:
- $(info V Define to non-empty string for verbose output)
- $(info )
$(info LINK_PAGES How to install link pages. [".so", "symlink"])
$(info Z Install pages compressed. ["", ".bz2", ".gz", ".lz", ".xz"])
$(info )
$(info DISTNAME $$(git describe))
$(info DISTVERSION /$$DISTNAME/s/man-pages-//)
$(info )
+ $(info HIDE_ERR Define to empty string to debug some errors)
+ $(info )
$(info # Directory variables:)
$(info )
$(info builddir .tmp)