Control: reopen -1 On Sat, Nov 17, 2018 at 12:09:08PM +0000, Debian Bug Tracking System wrote: > [Helmut Grohne] > * Fix FTCBFS: Export a cross compiler for ./configure and make. > (Closes: #913845)
You applied the patch partially. Without including buildtools.mk, CC simply becomes "cc" and that's wrong. If you dislike buildtools.mk, you can use the following: include /usr/share/dpkg/architecture.mk ifeq ($(origin CC),default) CC = $(DEB_HOST_GNU_TYPE)-gcc endif Helmut