# this one based on the build log
found 1076924 1.22.8
# and this one based on the fact that it does not happen anymore
fixed 1076924 1.22.11
thanks
Note: I was unsure about this because the debian/rules file
for the affected package was too simple:
------------------------------------------------------
export LIBDIR=/usr/lib/$(shell dpkg-architecture -qDEB_HOST_MULTIARCH)/sendip
export PREFIX=/usr
%:
dh $@
------------------------------------------------------
But then I looked at the Makefile:
include /usr/share/dpkg/buildflags.mk
CFLAGS += -fPIC -fsigned-char -pipe -Wall -Wpointer-arith -Wwrite-strings \
That's it. Using buildflags.mk and "CFLAGS +=" was known not to work
reliably for a while.
Thanks.