Source: shhmsg Version: 1.4.2-1 Tags: patch User: [email protected] Usertags: rebootstrap
shhmsg fails to cross build from source, because it does not pass cross tools to make. Using dh_auto_build is sufficient to fix that. Please consider applying the attached patch. Helmut
diff --minimal -Nru shhmsg-1.4.2/debian/changelog shhmsg-1.4.2/debian/changelog --- shhmsg-1.4.2/debian/changelog 2015-08-01 12:58:57.000000000 +0200 +++ shhmsg-1.4.2/debian/changelog 2018-10-17 19:22:07.000000000 +0200 @@ -1,3 +1,10 @@ +shhmsg (1.4.2-1.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Let dh_auto_build pass cross tools to make. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Wed, 17 Oct 2018 19:22:07 +0200 + shhmsg (1.4.2-1) unstable; urgency=medium * New package maintainer (Closes: #554255). diff --minimal -Nru shhmsg-1.4.2/debian/rules shhmsg-1.4.2/debian/rules --- shhmsg-1.4.2/debian/rules 2015-08-01 13:47:33.000000000 +0200 +++ shhmsg-1.4.2/debian/rules 2018-10-17 19:22:05.000000000 +0200 @@ -13,9 +13,9 @@ build-stamp: dh_testdir - CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" $(MAKE) + CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" dh_auto_build $(MAKE) clean - SHARED=1 CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" $(MAKE) + SHARED=1 CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" dh_auto_build touch build-stamp clean:

