Source: lirc Version: 0.10.1-6.3 Tags: patch lirc passes --enable-silent-rules to configure. Doing so makes debugging build failures hard, it breaks build log scanning for compiler flags and it is discouraged by the Debian policy. Please build verbosely by default. If you happen to prefer the less noisy output, please include "terse" in DEB_BUILD_OPTIONS. Once doing so, debhelper will add --enable-silent-rules for you. I'm attaching a patch for your convenience.
Helmut
diff --minimal -Nru lirc-0.10.1/debian/changelog lirc-0.10.1/debian/changelog --- lirc-0.10.1/debian/changelog 2021-03-18 22:21:31.000000000 +0100 +++ lirc-0.10.1/debian/changelog 2021-05-20 22:12:01.000000000 +0200 @@ -1,3 +1,10 @@ +lirc (0.10.1-6.4) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Build verbosely by default. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Thu, 20 May 2021 22:12:01 +0200 + lirc (0.10.1-6.3) unstable; urgency=medium * Non-maintainer upload. diff --minimal -Nru lirc-0.10.1/debian/rules lirc-0.10.1/debian/rules --- lirc-0.10.1/debian/rules 2021-03-18 22:21:31.000000000 +0100 +++ lirc-0.10.1/debian/rules 2021-05-20 22:11:59.000000000 +0200 @@ -22,12 +22,10 @@ override_dh_auto_configure: ifeq ($(DEB_BUILD_ARCH_OS), linux) dh_auto_configure -- \ - --enable-uinput --enable-devinput \ - --enable-silent-rules + --enable-uinput --enable-devinput else dh_auto_configure -- \ - --disable-uinput --disable-devinput \ - --enable-silent-rules + --disable-uinput --disable-devinput endif

