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 listing several architectures like ifneq (,$(filter $(DEB_HOST_ARCH), i386 mipsel hppa)) > Thomas cu Adrian