Source: libs3 Version: 2.0-3 Tags: patch Please build libs3 verbosely by default. The attached patch implements that.
Helmut
diff --minimal -Nru libs3-2.0/debian/changelog libs3-2.0/debian/changelog --- libs3-2.0/debian/changelog 2017-09-28 00:26:58.000000000 +0200 +++ libs3-2.0/debian/changelog 2019-09-06 21:03:25.000000000 +0200 @@ -1,3 +1,10 @@ +libs3 (2.0-3.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Enable verbose build logs. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Fri, 06 Sep 2019 21:03:25 +0200 + libs3 (2.0-3) unstable; urgency=low * Fix FTBFS issues with GCC 7 (closes: #853509). diff --minimal -Nru libs3-2.0/debian/rules libs3-2.0/debian/rules --- libs3-2.0/debian/rules 2017-09-28 00:26:58.000000000 +0200 +++ libs3-2.0/debian/rules 2019-09-06 21:03:25.000000000 +0200 @@ -6,6 +6,11 @@ DESTDIR = $(CURDIR)/debian/tmp/usr/ +ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS))) +override_dh_auto_build: + dh_auto_build -- VERBOSE=true +endif + override_dh_auto_install: $(MAKE) install DESTDIR=$(DESTDIR) dh_auto_install

