Source: etherpuppet Version: 0.3-3 Tags: patch User: [email protected] Usertags: rebootstrap
etherpuppet fails to cross build from source, because it uses the build architecture compiler as a make default in debian/rules. The easiest way of fixing that is seeding the value from dpkg's buildtools.mk and doing so makes etherpuppet cross buildable. Please consider applying the attached patch. Helmut
diff --minimal -Nru etherpuppet-0.3/debian/changelog etherpuppet-0.3/debian/changelog --- etherpuppet-0.3/debian/changelog 2017-04-29 12:56:45.000000000 +0200 +++ etherpuppet-0.3/debian/changelog 2019-05-12 09:55:43.000000000 +0200 @@ -1,3 +1,10 @@ +etherpuppet (0.3-3.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Let dpkg's buildtools.mk supply $(CC). (Closes: #-1) + + -- Helmut Grohne <[email protected]> Sun, 12 May 2019 09:55:43 +0200 + etherpuppet (0.3-3) unstable; urgency=low * Apply upstream fix to make package usable on systems with unsigned diff --minimal -Nru etherpuppet-0.3/debian/rules etherpuppet-0.3/debian/rules --- etherpuppet-0.3/debian/rules 2017-04-29 12:56:45.000000000 +0200 +++ etherpuppet-0.3/debian/rules 2019-05-12 09:55:42.000000000 +0200 @@ -1,5 +1,6 @@ #! /usr/bin/make -f +-include /usr/share/dpkg/buildtools.mk include /usr/share/cdbs/1/rules/debhelper.mk DEB_INSTALL_MANPAGES_etherpuppet=debian/etherpuppet.1

