Hi,
for spice-server project we import the top/maint.mk file however we have an issue with these lines:
# Prevent programs like 'sort' from considering distinct strings to be equal.
# Doing it here saves us from having to set LC_ALL elsewhere in this file.
export LC_ALL = C
specifically this affect a2x program (written in Python) which think that the encoding of some files is not utf-8 failing to compile documentation.
For more information see https://gitlab.freedesktop.org/spice/spice/issues/35.
What do you think about changing LC_ALL to LC_COLLATE?
Hi,
for spice-server project we import the
top/maint.mkfile however we have an issue with these lines:specifically this affect
a2xprogram (written in Python) which think that the encoding of some files is not utf-8 failing to compile documentation.For more information see https://gitlab.freedesktop.org/spice/spice/issues/35.
What do you think about changing
LC_ALLtoLC_COLLATE?