Source: hunt Version: 1.5-6.1 Tags: patch User: [email protected] Usertags: rebootstrap
hunt fails to cross build from source, because it does not pass cross tools to make. The easiest way of fixing that - using dh_auto_build - makes hunt cross buildable. Please consider applying the attached patch. Helmut
diff -u hunt-1.5/debian/changelog hunt-1.5/debian/changelog --- hunt-1.5/debian/changelog +++ hunt-1.5/debian/changelog @@ -1,3 +1,10 @@ +hunt (1.5-6.2) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Let dh_auto_build pass cross tools to make. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Mon, 27 May 2019 21:40:41 +0200 + hunt (1.5-6.1) unstable; urgency=medium * Non-maintainer upload. diff -u hunt-1.5/debian/control hunt-1.5/debian/control --- hunt-1.5/debian/control +++ hunt-1.5/debian/control @@ -2,7 +2,7 @@ Section: net Priority: optional Maintainer: Angel Ramos <[email protected]> -Build-Depends: debhelper (>= 5.0.0) +Build-Depends: debhelper (>= 7) Standards-Version: 3.8.0 Package: hunt diff -u hunt-1.5/debian/rules hunt-1.5/debian/rules --- hunt-1.5/debian/rules +++ hunt-1.5/debian/rules @@ -9,8 +9,8 @@ build-stamp: dh_testdir # build package here - $(MAKE) - cd tpserv && make + dh_auto_build + dh_auto_build --sourcedirectory=tpserv touch build-stamp clean:

