Okay. I applied your patch. Please have a look.
Adrian Bunk <b...@debian.org> hat am 30.07.2020 16:29 geschrieben:On Thu, Jul 30, 2020 at 03:47:49PM +0200, Thomas Dettbarn wrote:>...One last thing... Why did your patch say "ifneq... i386"?ifneq (,$(filter $(DEB_HOST_ARCH), i386))^This compares the empty string with the filter result.ifeq ($(DEB_HOST_ARCH), i386)would to the same in this case.I am used to the filter way of writing it since it allows listingseveral architectures likeifneq (,$(filter $(DEB_HOST_ARCH), i386 mipsel hppa))ThomascuAdrian