Control: reopen -1 On Sun, Sep 13, 2020 at 11:39:03AM +0000, Debian Bug Tracking System wrote: >... > pmix (3.2.0~rc1-3) unstable; urgency=medium > . > * Fix froim Adrian Bunk for atomic primitives on armel, mipsel > Closes: #970194 >... > --- debian/rules.old 2020-09-12 18:52:20.106150933 +0000 > +++ debian/rules 2020-09-12 18:52:31.126056610 +0000 > @@ -2,6 +2,10 @@ > > export DH_VERBOSE=1 > > +ifneq (,$(filter $(DEB_HOST_ARCH), armel mipsel)) > + export DEB_LDFLAGS_MAINT_APPEND += -Wl,--no-as-needed -latomic > -Wl,--as-needed > +endif > + > DPKG_EXPORT_BUILDFLAGS = 1 > include /usr/share/dpkg/buildflags.mk
It actually has to be that far up in rules, I also learned the hard way that moving it to the natural place as you did doesn't work. cu Adrian