Source: farpd
Version: 0.2-11
Tags: patch
User: debian-cr...@lists.debian.org
Usertags: ftcbfs

farpd fails to cross build from source for any-i386, because
debian/rules confuses the gnu type and the multiarch triplet. autoconf
always consumes the gnu type and for i386 they happen to differ. Please
consider applying the attached patch.

Helmut
diff -u farpd-0.2/debian/changelog farpd-0.2/debian/changelog
--- farpd-0.2/debian/changelog
+++ farpd-0.2/debian/changelog
@@ -1,3 +1,10 @@
+farpd (0.2-11.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: Fix gnutype vs multiarch confusion. (Closes: #-1)
+
+ -- Helmut Grohne <hel...@subdivi.de>  Wed, 17 Nov 2021 12:13:33 +0100
+
 farpd (0.2-11) unstable; urgency=low
 
   * configure.in: Fix FTBFS: configure: error: libevent not found with the
diff -u farpd-0.2/debian/rules farpd-0.2/debian/rules
--- farpd-0.2/debian/rules
+++ farpd-0.2/debian/rules
@@ -28,7 +28,7 @@
 
 config.status: configure
        dh_testdir
-       ./configure --host=$(DEB_HOST_MULTIARCH) --build=$(DEB_BUILD_MULTIARCH) 
--prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+       ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) 
--prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
 
 build: build-stamp

Reply via email to