Source: shush Version: 1.2.3-5.2 Tags: patch User: [email protected] Usertags: ftcbfs
shush fails to cross build from source, because it does not pass --host to the configure script. The easiest way of doing so - using dh_auto_configure - makes shush cross buildable. I'm attaching a patch for your convenience. Helmut
diff -Nru shush-1.2.3/debian/changelog shush-1.2.3/debian/changelog --- shush-1.2.3/debian/changelog 2025-09-12 17:12:43.000000000 +0200 +++ shush-1.2.3/debian/changelog 2025-09-30 16:55:15.000000000 +0200 @@ -1,3 +1,10 @@ +shush (1.2.3-5.3) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Let dh_auto_configure pass --host to configure. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Tue, 30 Sep 2025 16:55:15 +0200 + shush (1.2.3-5.2) unstable; urgency=medium * Non-maintainer upload. diff -Nru shush-1.2.3/debian/rules shush-1.2.3/debian/rules --- shush-1.2.3/debian/rules 2022-11-12 00:26:32.000000000 +0100 +++ shush-1.2.3/debian/rules 2025-09-30 16:55:14.000000000 +0200 @@ -14,7 +14,7 @@ rm -f src/signals.h override_dh_auto_configure: - ./configure \ + dh_auto_configure -- \ --with-pcre \ --with-syslog \ --with-sizelimit=2000

