https://bugzilla.redhat.com/show_bug.cgi?id=1530846
Paolo Bonzini pbonzini@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |ajax@redhat.com, | |alexl@redhat.com, | |fonts-bugs@lists.fedoraproj | |ect.org, | |i18n-bugs@lists.fedoraproje | |ct.org, | |john.j5live@gmail.com, | |mbarnes@fastmail.com, | |mclasen@redhat.com, | |pnemade@redhat.com, | |rhughes@redhat.com, | |rstrode@redhat.com, | |sandmann@redhat.com, | |tagoh@redhat.com Component|git |fontconfig Assignee|pstodulk@redhat.com |tagoh@redhat.com
--- Comment #4 from Paolo Bonzini pbonzini@redhat.com --- The culprit is LC_NUMERIC. Tcl is usually very careful to keep LC_NUMERIC="C", otherwise various functions in Tcl start expecting a decimal comma instead of a point (Tcl is string-based).
However, fontconfig's FcConfigEnsure is now calling setlocale(LC_ALL, "") and this breaks gitk among other programs.
The fix in the upstream fontconfig repository is this:
https://github.com/behdad/fontconfig/commit/98eaef69af1350e459bf9c175476d3b7...
Could it please be backported?