Source: minisat2 Version: 1:2.2.1-5 Tags: patch User: helm...@debian.org Usertags: rebootstrap
The minisat2 build hides compiler invocations by default. That breaks inspecting the build logs with blhc and it also makes diagnosing cross build failures unnecessarily hard. The attached patch makes the build log verbose unless DH_QUIET is non-empty. Please consider applying it. Helmut
diff --minimal -Nru minisat2-2.2.1/debian/changelog minisat2-2.2.1/debian/changelog --- minisat2-2.2.1/debian/changelog 2014-07-30 11:54:31.000000000 +0200 +++ minisat2-2.2.1/debian/changelog 2018-05-24 20:57:09.000000000 +0200 @@ -1,3 +1,10 @@ +minisat2 (1:2.2.1-5.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Enable verbose build logs by default (closes: #-1) + + -- Helmut Grohne <hel...@subdivi.de> Thu, 24 May 2018 20:57:09 +0200 + minisat2 (1:2.2.1-5) unstable; urgency=low * Fix C++ syntax to enable Clang builds (closes: #756336) diff --minimal -Nru minisat2-2.2.1/debian/rules minisat2-2.2.1/debian/rules --- minisat2-2.2.1/debian/rules 2011-03-29 13:58:20.000000000 +0200 +++ minisat2-2.2.1/debian/rules 2018-05-24 20:57:09.000000000 +0200 @@ -9,6 +9,10 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +ifeq (${DH_QUIET},) +export VERB=1 +endif + %: dh $@