From: Bastian Germann Date: Mon, 12 Feb 2024 23:07:55 +0000 (+0100) Subject: debian: Increase build verbosity, add terse support X-Git-Tag: v6.7.0~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=86f3757ae033c07f8e90df2526e2f62144805ef5;p=thirdparty%2Fxfsprogs-dev.git debian: Increase build verbosity, add terse support Section 4.9 of the Debian Policy reads: "The package build should be as verbose as reasonably possible, except where the terse tag is included in DEB_BUILD_OPTIONS". Implement such behavior for xfsprogs by passing V=1 to make by default. Link: https://www.debian.org/doc/debian-policy/ch-source.html#main-building-script-debian-rules Link: https://bugs.debian.org/1063774 Reported-by: Emanuele Rocca Signed-off-by: Bastian Germann Reviewed-by: "Darrick J. Wong" Signed-off-by: Carlos Maiolino --- diff --git a/debian/rules b/debian/rules index 57baad625..7e4b83e2b 100755 --- a/debian/rules +++ b/debian/rules @@ -7,6 +7,10 @@ ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) PMAKEFLAGS += -j$(NUMJOBS) endif +ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS))) + PMAKEFLAGS += V=1 +endif + package = xfsprogs develop = xfslibs-dev bootpkg = xfsprogs-udeb