Source: nsnake Version: 3.0.1-2 Tags: patch User: helm...@debian.org Usertags: rebootstrap
nsnake fails to cross build from source, but diagnosing why is next to impossible without a verbose build log. Please make the build verbose by default as is recommended by Debian policy section 4.9. The attached patch implements that. Please consider applying it. Helmut
diff --minimal -Nru nsnake-3.0.1/debian/changelog nsnake-3.0.1/debian/changelog --- nsnake-3.0.1/debian/changelog 2014-08-14 00:55:57.000000000 +0200 +++ nsnake-3.0.1/debian/changelog 2019-02-24 11:03:39.000000000 +0100 @@ -1,3 +1,10 @@ +nsnake (3.0.1-2.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Make the build verbose by default. (Closes: #-1) + + -- Helmut Grohne <hel...@subdivi.de> Sun, 24 Feb 2019 11:03:39 +0100 + nsnake (3.0.1-2) unstable; urgency=medium * Updated maintainer mail address diff --minimal -Nru nsnake-3.0.1/debian/rules nsnake-3.0.1/debian/rules --- nsnake-3.0.1/debian/rules 2014-08-12 20:54:28.000000000 +0200 +++ nsnake-3.0.1/debian/rules 2019-02-24 11:03:37.000000000 +0100 @@ -4,3 +4,8 @@ %: dh $@ --parallel + +ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS))) +override_dh_auto_build: + dh_auto_build -- V=1 +endif