On Tue, Dec 15, 2020 at 09:40:53PM +0900, Norbert Preining wrote: > Hi Julian, > > faster than expected, here is a version that at least builds on my > system cleanly, using the following patch. Do you think this is fine as > is? >
One suggestion, apart from the ~ thing you noticed already: > diff --git a/debian/rules b/debian/rules > index 2053a97..ebd6517 100755 > --- a/debian/rules > +++ b/debian/rules > @@ -2,7 +2,12 @@ > > #export DH_VERBOSE=1 > > -DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) > +include /usr/share/dpkg/architecture.mk > + > +ifeq ($(DEB_HOST_ARCH_CPU),$(filter $(DEB_HOST_ARCH),i386 amd64)) Second one should also say $(DEB_HOST_ARCH_CPU), no? Or I guess this is shorter even and does the same? ifneq (,$(filter $(DEB_HOST_ARCH_CPU),i386 amd64)) -- debian developer - deb.li/jak | jak-linux.org - free software dev ubuntu core developer i speak de, en

