Enzo Nicosia writes:
> On Thu, Dec 18, 2025 at 10:25:15PM +0000, Stuart Henderson wrote:
> > please keep to a reasonably consistent style within a file for setting
> > variables, you have
> >
> > MAKE_FLAGS = DESTDIR=${PREFIX}
> > FAKE_FLAGS = DESTDIR=${WRKINST}${PREFIX}
> > NO_TEST=yes
> > DEBUG_PACKAGES=${BUILD_PACKAGES}
> >
> > would be better as this or similar
> >
> > MAKE_FLAGS = DESTDIR=${PREFIX}
> > FAKE_FLAGS = DESTDIR=${WRKINST}${PREFIX}
> > NO_TEST = yes
> > DEBUG_PACKAGES = ${BUILD_PACKAGES}
> >
> > ok
> >
>
> Well-spotted, sorry! That was done in haste, and unnecessarily so. Do I
> need to send a new tgz with correct indentation or the previous one is
> good to be committed by you/Anthony?
I've committed it. I went ahead and made the whitespace tweaks too.