On 2020-07-21 16:53:23 [+0200], Santiago Ruano Rincón wrote: > diff -Nru bzip2-1.0.6/debian/rules bzip2-1.0.6/debian/rules > --- bzip2-1.0.6/debian/rules 2019-06-24 22:16:40.000000000 +0200 > +++ bzip2-1.0.6/debian/rules 2020-07-21 10:31:21.000000000 +0200 > @@ -14,6 +14,9 @@ > DEB_BUILD_MAINT_OPTIONS := hardening=+all > DEB_CFLAGS_MAINT_APPEND := -Wall -Winline > DEB_CPPFLAGS_MAINT_APPEND := -D_REENTRANT > +# This -D_FILE_OFFSET_BITS=64 is needed to make bzip2 able to handle > > 2GB-size > +# files in 32-bit archs. See #944557 > +DEB_CPPFLAGS_MAINT_APPEND += -D_FILE_OFFSET_BITS=64
Isn't the preferred way to add "future=+lfs" to DEB_BUILD_MAINT_OPTIONS ? > include /usr/share/dpkg/buildflags.mk > > include /usr/share/dpkg/pkg-info.mk Sebastian