Source: penguin-command Version: 1.6.11-3 Tags: patch User: [email protected] Usertags: rebootstrap
penguin-command fails to cross build from source, because it does not pass --host to ./configure. The easiest way of doing so is using dh_auto_configure and that is sufficient for making penguin-command cross buildable. Please consider applying the attached patch. Helmut
diff --minimal -Nru penguin-command-1.6.11/debian/changelog penguin-command-1.6.11/debian/changelog --- penguin-command-1.6.11/debian/changelog 2014-08-22 19:16:01.000000000 +0200 +++ penguin-command-1.6.11/debian/changelog 2018-11-28 07:58:45.000000000 +0100 @@ -1,3 +1,10 @@ +penguin-command (1.6.11-3.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Let dh_auto_configure pass --host to ./configure. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Wed, 28 Nov 2018 07:58:45 +0100 + penguin-command (1.6.11-3) unstable; urgency=medium * New maintainer (Closes: #728867) diff --minimal -Nru penguin-command-1.6.11/debian/rules penguin-command-1.6.11/debian/rules --- penguin-command-1.6.11/debian/rules 2014-08-22 19:16:01.000000000 +0200 +++ penguin-command-1.6.11/debian/rules 2018-11-28 07:58:43.000000000 +0100 @@ -4,7 +4,7 @@ dh $@ --with autoreconf override_dh_auto_configure: - ./configure --prefix=/usr --bindir=/usr/games --datadir=/usr/share/games + dh_auto_configure -- --bindir=/usr/games --datadir=/usr/share/games override_dh_installman: dh_installman --language=ja penguin-command.ja.6

