Control: tags -1 + pending
Hi Simon,
On Wed, Jan 14, 2026 at 04:11:56PM +0000, Simon McVittie wrote:
>
> The attached patch seems to be enough, following the same pattern for
> LDFLAGS that was already used for CFLAGS and CPPFLAGS (at least it works
> for amd64, arm64 and i386, I haven't tried other combinations).
Thanks a lot for it, I've applied it and I'm preparing the upload. I did
need to tweak a bit because regex is to greedy and it was removing the
CPPFLAGS. The change was:
-e "/CPPFLAGS/s|CPPFLAGS=.\+\'|CPPFLAGS=\\\`dpkg-buildflags --get
CPPFLAGS\\\`'\"|" \
- -e "/LDFLAGS/s|LDFLAGS=.\+\'|LDFLAGS=\\\`dpkg-buildflags --get
LDFLAGS\\\`'\"|" \
+ -e "/LDFLAGS/s|LDFLAGS=.\+\('CPPFLAGS\)|LDFLAGS=\\\`dpkg-buildflags
--get LDFLAGS\\\`' \1|" \
-i `find . -name curl-config`
Thanks again and cheers,
Charles