Re: Adrian Bunk > 2. the following change: > > --- debian/rules.old 2023-07-24 15:36:20.941771419 +0000 > +++ debian/rules 2023-07-24 15:36:43.133759741 +0000 > @@ -5,7 +5,7 @@ > # less debug info to avoid running out of address space > ifneq (,$(filter $(DEB_HOST_ARCH), mips mipsel)) > export DEB_CXXFLAGS_MAINT_APPEND += --param ggc-min-expand=5 -g0 > -else ifneq (,$(filter $(DEB_HOST_ARCH), armhf))
The old command was wrong anyway, the pattern list comes first: ifneq (,$(filter armhf, $(DEB_HOST_ARCH))) Doesn't matter when it's a single item without % wildcards, but will explode when adding more architectures. Christoph