Source: trace-cmd Version: 2.8.3-1 Tags: patch According to the Debian policy section 4.9, packages should build verbosely by default. trace-cmd doesn't do that and this makes debugging build failures (for instance cross build failures) unnecessarily hard. Please consider applying the attached patch.
Helmut
diff --minimal -Nru trace-cmd-2.8.3/debian/changelog trace-cmd-2.8.3/debian/changelog --- trace-cmd-2.8.3/debian/changelog 2019-11-04 13:44:42.000000000 +0100 +++ trace-cmd-2.8.3/debian/changelog 2019-12-03 16:54:41.000000000 +0100 @@ -1,3 +1,10 @@ +trace-cmd (2.8.3-1.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Make the build verbose by default. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Tue, 03 Dec 2019 16:54:41 +0100 + trace-cmd (2.8.3-1) unstable; urgency=medium * Update to upstream v2.8.3 and change maintainer (Closes: #943551) diff --minimal -Nru trace-cmd-2.8.3/debian/rules trace-cmd-2.8.3/debian/rules --- trace-cmd-2.8.3/debian/rules 2019-11-04 13:44:42.000000000 +0100 +++ trace-cmd-2.8.3/debian/rules 2019-12-03 16:54:40.000000000 +0100 @@ -5,7 +5,7 @@ %: dh $@ -OPTS=DESTDIR=$(DEB_DESTDIR) prefix=/usr +OPTS=DESTDIR=$(DEB_DESTDIR) prefix=/usr VERBOSE=$(if $(filter terse,$(DEB_BUILD_OPTIONS)),0,1) override_dh_auto_clean: $(MAKE) clean doc_clean $(OPTS)

