This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=108f8a9e0a9f7e992c4d61e202e26bb6eef6c7c6 commit 108f8a9e0a9f7e992c4d61e202e26bb6eef6c7c6 Author: Guillem Jover <[email protected]> AuthorDate: Wed Aug 8 11:10:20 2018 +0200 debian: Rename maintainer-build DEB_BUILD_OPTIONS to terse Use the now official name for non-verbose builds. Ref: Debian policy 4.2.0 --- debian/changelog | 1 + debian/rules | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index cbf5b364c..a925929d5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -198,6 +198,7 @@ dpkg (1.19.1) UNRELEASED; urgency=medium Thanks to Sven Joachim <[email protected]>. - Do not pass VERBOSE to test suite, as we are not using any automake test driver, so it does not get honored. + - Rename maintainer-build DEB_BUILD_OPTIONS to new standardized terse. * Test suite: - Skip Dpkg::OpenPGP test if gpg is not present. - Check POD in all perl scripts. diff --git a/debian/rules b/debian/rules index 22052b892..49812fdd2 100755 --- a/debian/rules +++ b/debian/rules @@ -33,7 +33,7 @@ endif ifeq ($(DEB_HOST_ARCH_OS),linux) confflags += --with-libselinux endif -ifeq (,$(filter maintainer-build,$(DEB_BUILD_OPTIONS))) +ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS))) confflags += --disable-silent-rules endif -- Dpkg.Org's dpkg

